我有一个div进入函数的引用,我想引用div中的所有内容(解除div中所有内容的所有点击)。我有类似
的东西 $el.children().off();
我想模仿这样的事情:
$("#myDiv *").off();
但是我想使用我在这里的变量$ el,所以像这样
$el *.off();
在jquery中有没有解决这个问题的方法?谢谢!
答案 0 :(得分:2)
$el.children().unbind();
应该做的伎俩
答案 1 :(得分:1)
$el.find('*').off();
.find
的文档:http://api.jquery.com/find/
context parameter也被提及,但根据其文档:
在内部,选择器上下文是使用.find()方法实现的, 因此
$( "span", this )
相当于$( this ).find( "span" )
。
答案 2 :(得分:0)
使用context参数:$('*', el)
将选择元素内部的所有内容(或jQuery集合)el