为什么 jScrollPane 适用于所有“现代”应用程序?除了IE8之外的浏览器?

发布于 2024-09-24 15:27:23 字数 816 浏览 3 评论 0原文

我已经放入了新的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狼性发作 2024-10-01 15:27:23

我会尝试一些事情:

  • 将初始化脚本移到 HEAD 中。由于它们位于 document.ready 块内,因此将它们内联在正文底部不会产生任何效果。
  • 尝试注释掉其他脚本以查看它们是否引起问题。由于您在使用完全不同代码的两个版本的 jScrollPane 中遇到了相同的问题,因此该问题似乎可能与页面上的其他内容有关。

希望有帮助!

I would try a couple of things:

  • Move your initialisation scripts into the HEAD. Since they are inside document.ready blocks anyway it doesn't have any effect putting them inline at the bottom of the body.
  • Try commenting out other scripts to see if they are causing problem. Since you had the same problem with two versions of jScrollPane which use completely different code it seems that the problem may be related to something else on your page.

Hope it helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文