为什么 jScrollPane 适用于所有“现代”应用程序?除了IE8之外的浏览器?
我已经放入了新的 jScrollPane,并且我的滚动条可以在每个浏览器上使用除了IE8!旧版本也发生了同样的情况。我不断收到此错误:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)
Timestamp: Wed, 22 Sep 2010 14:14:38 UTC
Message: Invalid argument.
Line: 4618
Char: 4
Code: 0
URI: http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.js?ver=3.0.1
当我在 IE8 上打开演示页面时,它工作正常。 另外,我的通话没有什么奇怪的:
jQuery(document).ready(function($){
$('#content').jScrollPane({
showArrows: true,
verticalDragMinHeight: 20,
verticalDragMaxHeight: 20
});
});
内容的 css 是:
#content {
height: 300px;
overflow: auto;
width: 100%;
}
I have put in the new jScrollPane, and I've gotten my scrollbars to work on every browser except IE8! Same thing happened with the old version as well. I keep getting this error:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)
Timestamp: Wed, 22 Sep 2010 14:14:38 UTC
Message: Invalid argument.
Line: 4618
Char: 4
Code: 0
URI: http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.js?ver=3.0.1
When I pull up the demo's page on my IE8, it works fine.
Also, nothing weird in my call:
jQuery(document).ready(function($){
$('#content').jScrollPane({
showArrows: true,
verticalDragMinHeight: 20,
verticalDragMaxHeight: 20
});
});
Content's css is:
#content {
height: 300px;
overflow: auto;
width: 100%;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会尝试一些事情:
希望有帮助!
I would try a couple of things:
Hope it helps!