我正在使用niceScroll jQuery plugin作爲我的內容。我的內容ID#節點-10,這裏是CSS:niceScroll在頁面加載時不工作
#node-10{
height: 200px;
width: 370px;
}
#node-10 p{
padding-top:0;
margin-top:-3px;
padding-left:0;
padding-bottom:0;
}
和JS:
var nice = $("html").niceScroll({cursorborder:"",autohidemode:"false",cursorcolor:"##0076A3"}); // The document page (body)
$("#div1").html($("#div1").html()+' '+nice.version);
$("#node-10").niceScroll({cursorborder:"",autohidemode:false,cursorcolor:"red",boxzoom:true}); // First scrollable DIV
,並刷新我的網站。滾動在頁面加載時不可見,但當點擊我的內容時,請獲取滾動條。我該如何解決它?
爲什麼可點擊此內容? –