jQuery如何用clone()销毁draggable
$('div').draggable();
var x = $('#container').clone().find('div').draggable('destroy').end().html();
$('#save').val(x);
使用克隆后如何销毁draggable()
。销毁后,html 仍然包含类 .ui-draggable
。为什么会发生这种情况以及如何解决它而无需使用 removeClass()
。 destroy 应该处理这个问题。 检查 http://jsfiddle.net/rzfPP/50/
$('div').draggable();
var x = $('#container').clone().find('div').draggable('destroy').end().html();
$('#save').val(x);
How do i destroy draggable()
after we use clone. The html still contains the class .ui-draggable
after destroying. Why is this happening and how can i work around it without having to to use removeClass()
. destroy should handle this.
Check http://jsfiddle.net/rzfPP/50/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
.draggable()
分配给新克隆的 div,然后立即销毁它们似乎可以解决问题:Assigning
.draggable()
to the newly cloned divs and then immediately destroying those seems to do the trick: