2
我想在ajax創建的頁面上使用slimscroll插件。所以我需要使用jquery live()或on()函數。我應該如何使用它?使用slimscroll與jquery live()或on()
我想在ajax創建的頁面上使用slimscroll插件。所以我需要使用jquery live()或on()函數。我應該如何使用它?使用slimscroll與jquery live()或on()
我有slimscroll同樣的問題。我無法修復它,所以我又去了Google。發現這一個:https://github.com/LearnBoost/antiscroll。
它聲稱使用原生瀏覽器控件,所以它應該比大多數滾動條擴展更好。
希望這可以幫助你!
編輯:噢,在編輯頁面內容後別忘了打電話給$('.antiscroll-wrap').antiscroll();
。
提示:對於那些誰使用$.clone()
發現自己有多個(非功能)滾動條,使用它來刪除它們:
var antiscrollWrap = $clone.children(".antiscroll-wrap").first();
var antiscrollInner = $(antiscrollWrap).children(".antiscroll-inner").first();
$(antiscrollWrap).html(antiscrollInner);