从元素中删除 jScrollPane
如何从应用的元素中完全删除 jScrollPane?
how can I remove completely the jScrollPane from an element that it is applied?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从应用的元素中完全删除 jScrollPane?
how can I remove completely the jScrollPane from an element that it is applied?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
当前版本为v2.0.0beta11 - 2011-07-04。
您首先需要检索 api。然后调用destroy方法。
For the current version v2.0.0beta11 - 2011-07-04.
You first need to retrieve the api. Then call the destroy method.
如果您使用 jScrollPane 1.2.3 (或类似版本),您可以检查以下内容:
http://www.kelvinluck.com/assets/jquery/jScrollPane/remove。 html
您需要在容器上调用
jScrollPaneRemove()
,即$('.myownscrollpane').jScrollPaneRemove();
此函数不可用。在最新版本 2.x (http://jscrollpane.kelvinluck.com/) 上,原因作者:Kelvin Luck(jScrollPane 作者)Google jScrollPane 组。
我希望这会有所帮助:)
干杯
G.
if you're using jScrollPane 1.2.3 (or similar) you can check this:
http://www.kelvinluck.com/assets/jquery/jScrollPane/remove.html
You need to call
jScrollPaneRemove()
on the container i.e.$('.myownscrollpane').jScrollPaneRemove();
This function isn't avail. on the latest version 2.x (http://jscrollpane.kelvinluck.com/), reasons for it by Kelvin Luck (jScrollPane author) on Google jScrollPane group.
I hope that will help a bit :)
Cheers
G.
目前 github 上有一个 jScrollPane 的分支,其中添加了 destroy 方法:
https://github.com /blackjid/jScrollPane/commit/d3cdee394f708a7bce5c0875f673bfc70484fa0b
我将尽快将此补丁集成到官方 jScrollPane 版本中,并进行测试...
There is currently a fork of jScrollPane on github which has a destroy method added:
https://github.com/blackjid/jScrollPane/commit/d3cdee394f708a7bce5c0875f673bfc70484fa0b
I will be integrating this patch into the official jScrollPane release as soon as I have the time to bring it across and test it...