admin管理员组文章数量:1349046
Until recently I had this set up, which was called multiple times:
$('.rsh')
.draggable('destroy')
.draggable({ blah blah details });
The destroy
was there to stop multiple draggable handlers accumulating on the class. New elements are being created by AJAX, and an initial attachment of draggable
to the class doesn't touch subsequently created elements.
However, when I updated to version 1.9.2 of jQuery UI, it started giving me this error:
Error: cannot call methods on draggable prior to initialization; attempted to call method 'destroy'
So I removed the destroy line, and it's sweet. Except... I suspect that I may now be adding more and more handlers to the class (which is why the destroy
was there in the first place).
I tried this, but it didn't like it:
if ($('.rsh').length) {
$('.rsh').draggable('destroy');
}
Two questions: (1) Will there be more and more handlers attached to the class each time I fire the draggable set up line? (2) If so, any solutions on how to remove them?
Until recently I had this set up, which was called multiple times:
$('.rsh')
.draggable('destroy')
.draggable({ blah blah details });
The destroy
was there to stop multiple draggable handlers accumulating on the class. New elements are being created by AJAX, and an initial attachment of draggable
to the class doesn't touch subsequently created elements.
However, when I updated to version 1.9.2 of jQuery UI, it started giving me this error:
Error: cannot call methods on draggable prior to initialization; attempted to call method 'destroy'
So I removed the destroy line, and it's sweet. Except... I suspect that I may now be adding more and more handlers to the class (which is why the destroy
was there in the first place).
I tried this, but it didn't like it:
if ($('.rsh').length) {
$('.rsh').draggable('destroy');
}
Two questions: (1) Will there be more and more handlers attached to the class each time I fire the draggable set up line? (2) If so, any solutions on how to remove them?
Share Improve this question edited Jan 9, 2013 at 23:37 Nick asked Jan 9, 2013 at 23:29 NickNick 6,02512 gold badges56 silver badges79 bronze badges2 Answers
Reset to default 7No, there won't be extra handlers bound. jQuery registers the initialized instance to the element and won't create a new instance of the same widget for the same element.
As you're worried about handlers, here's a quick check (jQuery 1.8+ and UI 1.9+):
$('div').draggable();
console.log( $._data($('div')[0], 'events') );
$('div').draggable();
console.log( $._data($('div')[0], 'events') );
Fiddle
As you can see, the attached handlers object is not altered after trying to initialize a new draggable instance on the same element.
edit: Subsequent calls with parameters won't be ignored though, rather they will extend the existing widget as shown on @Jason Sperske's answer.
Subsequent calls to .draggable()
extend previous calls when attached to the same object (and not replace them as I had originally thought). See this example (extended from Fabrício Matté's) (demo)
<div>foo</div>
<script>
$('div').draggable({
start: function () {
console.log("drag 1");
}
});
console.log($._data($('div')[0], 'events'));
$('div').draggable({
stop: function () {
console.log("drag 2");
}
});
console.log($._data($('div')[0], 'events'));
</script>
In the console.log
you see only these messages:
drag 1 <- on start
drag 2 <- on stop
本文标签: javascriptjQuery draggablewhat happens if it is applied twice to an elementStack Overflow
版权声明:本文标题:javascript - jQuery draggable - what happens if it is applied twice to an element? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743832711a2546818.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论