jScrollpane Chrome 问题

发布于 2024-10-03 03:14:31 字数 529 浏览 1 评论 0原文

在 JScrollPane 站点的“已知问题”中,有一个:

在 Webkit 浏览器中 CSS 必须是 包含在 Javascript 之前

我这样做,但有时我仍然遇到(仅在第一页,索引中)一些滚动问题,滚动就消失了,在我再次刷新页面后,一切正常,

我的浏览器缓存是空的,所以不是这样.. 我也尝试使用:

$.ajaxSettings.cache = false;

我用于滚动的代码类似于ajax示例:

$(document).ready(function() {
   var api = $('#mydiv').jScrollPane({ showArrows: false, reinitialiseOnImageLoad: true }).data('jsp');
   $('.a_link').live('click', function() { ... ....

我该如何解决这个问题?

in the "Known issues" at JScrollPane site, there's a:

In Webkit browsers CSS must be
included before Javascript

i did that but sometimes im still getting (only in the first page, the index) some scroll problems, the scroll just disappears and after i refresh the page again its all ok

my browser cache is empty so is not that..
also i tried using:

$.ajaxSettings.cache = false;

the code im using for my scroll is similar to the ajax example:

$(document).ready(function() {
   var api = $('#mydiv').jScrollPane({ showArrows: false, reinitialiseOnImageLoad: true }).data('jsp');
   $('.a_link').live('click', function() { ... ....

how can i fix this?

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

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

发布评论

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

评论(1

水波映月 2024-10-10 03:14:31

reinitialiseOnImageLoad 是 jScrollPane 版本 1 中的一项设置,不再执行任何操作。如果您的窗格包含图像,您需要使用以下技术之一:

http://jscrollpane.kelvinluck.com /image2.html

http://jscrollpane.kelvinluck.com/image.html

如果这没有帮助,请提供 URL 或在 http://www.jsfiddle.net/ (或者告诉我您是否可以在 jScrollPane 站点上的演示中重现)。

reinitialiseOnImageLoad is a setting from version 1 of jScrollPane and no longer does anything. If your pane contains images you'll need to use one of these techniques:

http://jscrollpane.kelvinluck.com/image2.html

http://jscrollpane.kelvinluck.com/image.html

If that doesn't help please provide a URL or set up an example on http://www.jsfiddle.net/ (or tell me if you can reproduce in the demos on the jScrollPane site).

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