Div 不使用 jScrollPane 显示滚动条

发布于 2024-11-27 19:14:47 字数 472 浏览 3 评论 0原文

如果这个问题已经被问过,我很抱歉,但我正在努力寻找答案。

我在 div 上使用 jQuery jScrollPane。我可以告诉插件已正确链接,因为标准浏览器滚动条已被删除,但替换中没有添加 jScrollPane 滚动条,我只是无法向下滚动内容。

我的标记很简单:

<div class="classa">
  ...Long content here...
</div>

Javascript:

$(document).ready(function(){
    $(".classa").jScrollPane();
});

有没有人经历过这个之前?我缺少什么简单的东西吗?

我想我可能在某个地方丢失了一些CSS,否则我不知道如何指定滚动条的颜色...

您的帮助将不胜感激

Apologies if this question has already been asked, but I'm struggling to find an answer on SO.

I'm using jQuery jScrollPane on a div. I can tell the plugin has been linked correctly as the standard browser scroll bar is removed, but no jScrollPane scrollbar is added in replacement, I just can't scroll down the content..

My markup is as simple as:

<div class="classa">
  ...Long content here...
</div>

Javascript:

$(document).ready(function(){
    $(".classa").jScrollPane();
});

Has anyone experienced this before? Is there something simple I'm missing?

I think I might be missing some CSS somewhere or something, otherwise I don't know how to specify the colour of the scrollbar anyway...

Your help would be much appreciated

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

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

发布评论

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

评论(2

九歌凝 2024-12-04 19:14:47

此 URL 上有一些 jScrollPane 示例的 CSS 代码示例: http://www .kelvinluck.com/assets/jquery/jScrollPane/basic.html

示例 CSS 可以在以下位置找到:
http://www.kelvinluck.com/assets/jquery/jScrollPane/styles /jScrollPane.css

希望有帮助。


我的错误 - CSS 应该与旧版本的 jScrollPane 一起使用。可以在这里找到要使用的正确 CSS: http://jscrollpane.kelvinluck.com/style /jquery.jscrollpane.css

There is some sample CSS code for the jScrollPane example at this URL: http://www.kelvinluck.com/assets/jquery/jScrollPane/basic.html.

The sample CSS can be found at:
http://www.kelvinluck.com/assets/jquery/jScrollPane/styles/jScrollPane.css

Hope that helps.


My mistake - that CSS is to be used with an older version of jScrollPane. The correct CSS to use can be found here: http://jscrollpane.kelvinluck.com/style/jquery.jscrollpane.css

染墨丶若流云 2024-12-04 19:14:47

尝试将“...此处内容较长...”包含在

标签中。

像这样:

<div class="classa">
<p>
...Long content here...
</p>
</div>

try enclosing the ".... long content here....." in the

tag.

like so:

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