JScrollPane动态调整问题

发布于 2024-11-18 21:47:51 字数 253 浏览 1 评论 0原文

我正在使用 JScrollPane 来设置滚动条的样式。但是,我需要通过ajax加载内容。

我发现JSrollpane在内容超过高度时不会自动添加滚动条。

任何人都可以建议解决此问题的方法吗?

有2个例子。测试块 #1 使用 JScrollPane,测试块 #2 使用默认滚动条。

如果您单击任一测试用例中的红色框,则会添加示例内容作为响应。您会注意到默认滚动条会自动调整,但即使添加了内容,jscrollpane 也不会调整。

I am using JScrollPane to style my scrollbars. However, I need to load the content via ajax.

What I found it JSrollpane does not automatically add the scrollbar when the content exceeds the hight.

Can anyone suggest a work-around to this problem?

There are 2 examples. Test Block #1 uses JScrollPane and Test Block #2 uses the default scrollbar.

If you click in the red box in either test case, sample content is added in response. You'll notice the default scrollbar adjusts automatically but jscrollpane does not adjust even though the content is added.

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

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

发布评论

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

评论(1

北恋 2024-11-25 21:47:51

对于任何感兴趣的人...

解决方案实际上非常简单 - 每次将内容加载到元素中时,您都会回忆起所需元素上的 jscrollPane() 函数。

即:

$('div#block-block-1 div.content').jScrollPane();

    $('div#block-block-1 div.content').click(
        function(){
            $(this).text( $(this).text() + "Pellentesque eget diam enim; et mattis nullaPellentesque eget diam enim; et mattis nulla." );
            $(this).css('text-indent', '0');
            $('div#block-block-1 div.content').jScrollPane();
        }
    );

JScrollPane 最初应用于 div.content,然后每次响应单击事件时加载更多内容。这样自定义滚动条就会自动调整。

我希望这对某人有帮助。

To anyone who is interested ...

The solution is actually annoyingly simple - you recall the jscrollPane() function on the desired element each time content is loaded into the element.

i.e:

$('div#block-block-1 div.content').jScrollPane();

    $('div#block-block-1 div.content').click(
        function(){
            $(this).text( $(this).text() + "Pellentesque eget diam enim; et mattis nullaPellentesque eget diam enim; et mattis nulla." );
            $(this).css('text-indent', '0');
            $('div#block-block-1 div.content').jScrollPane();
        }
    );

JScrollPane is applied to the div.content initially and then also each time more content is loaded in when responding to a click event. This way the custom scrollbar automatically adjusts.

I hope that helps someone.

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