问题
I am using jScrollPane and are just testing it in all browsers and have discovered that it doesn't work in IE. Does anyone have any suggestions. Thanks. Here is the link.
回答1:
You have an extra comma after animateScroll: true,
on your page...
change...
$(this).jScrollPane(
{
showArrows: false,
animateScroll: true,
}
to...
$(this).jScrollPane(
{
showArrows: false,
animateScroll: true
}
That should display the scroll pane in IE.
来源:https://stackoverflow.com/questions/9729672/custom-scroll-bar-using-jscrollpane-doesnt-appear-in-ie-but-works-on-every-othe