使用带有jquery live()或on()的slimscroll

时间:2013-08-29 15:42:31

标签: slimscroll

我想在ajax创建的页面上使用slimscroll插件。所以我需要在jquery live()或on()函数中使用它。我应该如何使用它?

1 个答案:

答案 0 :(得分:0)

我对slimscroll有同样的问题。我无法解决它,所以我又去了谷歌。找到了这个: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);