jScrollPane 的问题

发布于 2024-12-07 16:47:12 字数 148 浏览 0 评论 0原文

我在我的网站上使用了 jScrollPane。我还使用 ajax 来更新使用 jScrollPane 的同一 div 上的数据。现在,当我将返回的数据附加到 div 时,滚动条在附加文本上不可见。可能是因为在文档加载时调用了 jQuery 函数,但现在有什么想法可以解决这个问题吗?

I have used jScrollPane on my site. I'm also using ajax to update the data on the same div where the jScrollPane is used. Now, when i append the returned data to the div, the scrollbar is not visible on the appended text. It may because the jQuery function is called when the document loads but now any ideas to solve this problem?

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

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

发布评论

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

评论(1

顾北清歌寒 2024-12-14 16:47:12

动态插入内容时需要使用jScrollPane中的自动重新初始化功能,如下所示:

$(function() {
   $('.scroll-pane').jScrollPane({autoReinitialise: true, showArrows:true, scrollbarWidth: 16, arrowSize: 15});
});

You need to use the auto reinitialise function in jScrollPane when inserting content dynamicly, something like this:

$(function() {
   $('.scroll-pane').jScrollPane({autoReinitialise: true, showArrows:true, scrollbarWidth: 16, arrowSize: 15});
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文