我正在使用jScrollPane并且只是在所有浏览器中测试它并且发现它在IE中不起作用。有没有人有什么建议。谢谢。这是the link。
答案 0 :(得分:0)
页面上animateScroll: true,
之后还有一个额外的逗号...
...变化
$(this).jScrollPane(
{
showArrows: false,
animateScroll: true,
}
为...
$(this).jScrollPane(
{
showArrows: false,
animateScroll: true
}
那应该在IE中显示滚动窗格。