Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的网络中添加 jpanel 时遇到问题。
我有两个具有相同类的 div,我想在其中添加滚动,但是在第一次访问网络时,它只显示 1 个带滚动的 div。
当我刷新网页时,它会同时显示两者。(除了在 Chrome 中,它从不显示)
添加了所有需要的库,并且 div 具有类标记。
代码如下:
$(function() { $('.scrollCh').jScrollPane(); });
谢谢你。
这很奇怪,但是您是否尝试添加重新初始化选项?像
var settings = { autoReinitialise: true }; $('.scrollCh').jScrollPane(settings);