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.
在不知道哪个选择器绑定了 jQuery UI 选项卡的情况下,有没有办法说当这个页面加载时,销毁所有 jQuery UI 选项卡绑定?
所以像这样的伪代码 $('body *').tabs('destroy');
很容易做到:
Fiddle
$(document).ready(function() { $('.ui-tabs').tabs('destroy'); });
同样,您可以使用类来查找其他支持 jQuery UI 的元素,例如.ui-draggable、.ui-slider等。
.ui-draggable
.ui-slider