Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jScrollPane 并且只是在所有浏览器中对其进行测试,发现它在 IE 中不起作用。有没有人有什么建议。谢谢。这是链接。
您的页面后面有一个额外的逗号animateScroll: true,...
animateScroll: true,
改变...
$(this).jScrollPane( { showArrows: false, animateScroll: true, }
到...
$(this).jScrollPane( { showArrows: false, animateScroll: true }
那应该在 IE 中显示滚动窗格。