奇怪的谷歌浏览器错误。 jQuery

发布于 2024-09-12 22:18:01 字数 235 浏览 3 评论 0原文

我在我的网站中使用了 jScrollPane jquery 插件。 它通常适用于除 Chrome 之外的所有浏览器。 看看这里:http://evarivas.com/bio 在我的 Chrome 中我没有任何问题。滚动工作正常。在另一台电脑上有时能用有时不能。刷新后有效,或者无效...

这是什么?很奇怪...

I have used in my site jScrollPane jquery plugin.
It is normally work in all browsers except Chrome.
Take a look here: http://evarivas.com/bio
In my Chrome I have no problems. Scroll works normally. On another computers sometimes works sometimes doesn't. After refresh works, or doesn't work...

What is this? Very strange...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

你不是我要的菜∠ 2024-09-19 22:18:01

我最近收到了 jScrollPane Google Group 消息,我看到至少有两三个人通过将脚本放在 head 而不是 body< 的底部,问题就消失了。 /代码>。我意识到一些性能建议建议在底部使用脚本,但根据我的经验,这并不是一个足够显着的性能增益来证明初始化行为中经常出现的更大延迟是合理的。

也许值得一试。

编辑:刚刚注意到您使用的是相当旧的 jScrollPane 版本 - 我强烈建议升级到 jScrollPane 的 build 93,可以通过从 google 代码存储库下载最新版本来获得该版本: google.com/p/jscrollpane/source/checkout" rel="noreferrer">http://code.google.com/p/jscrollpane/source/checkout

只需升级即可解决您的问题。

I have been receiving the jScrollPane Google Group messages recently, and I've seen at least two or three people have their issues disappear by placing scripts in the head instead of the bottom of the body. I realize some performance recommendations suggest scripts at the bottom but in my experience it's not really a significant enough perf gain to justify the often-greater delays in initializing behaviors.

Might be worth a try.

Edit: Just noticed you're using a pretty old version of jScrollPane -- I highly recommend upgrading to build 93 of jScrollPane, which is available by downloading the latest from the google code repository: http://code.google.com/p/jscrollpane/source/checkout

Simply upgrading may solve your problem.

恰似旧人归 2024-09-19 22:18:01

您是否下载了整个 JScroll 库或仅在标头脚本中放置了一个链接?

我遇到了无法让无限滚动仅在 Chrome 上运行的问题,但我意识到这是因为 Chrome 无法识别我的脚本的 MIME 类型。

例如,我有:

<script src=https://raw.githubusercontent.com/pklauzinski/jscroll/master/jquery.jscroll.min.js></script>

从 Github 输入原始脚本的正确方法是:

<script src="https://rawgit.com/pklauzinski/jscroll/master/jquery.jscroll.min.js"></script>

Have you downloaded the entire JScroll library or merely placed a link in the header script?

I had the issue of not being able to get my infinite scroll working on Chrome only, however I realised that this is because Chrome did not recognise the MIME type of my script.

For example, I had:

<script src=https://raw.githubusercontent.com/pklauzinski/jscroll/master/jquery.jscroll.min.js></script>

The correct way of entering a raw script from Github is:

<script src="https://rawgit.com/pklauzinski/jscroll/master/jquery.jscroll.min.js"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文