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.
我有两个想要捕捉的场景。
1)我想使用 jquery 过滤掉 jquery 对象内的所有元素,这些元素有一个 classname = myclass 的孩子
2)我想使用jquery过滤掉jquery对象内的所有元素,他们是子元素的innerhtml ==“”
我正在尝试这样的事情
var Rows = allRows.filter(children(".myclass"));
这不起作用(并且还尝试了其他一些东西,只是不再有代码了。
使用has方法:
has
var Rows = allRows.has('.myclass');
这是小提琴:http: //jsfiddle.net/j8WUZ/2/