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.
我一直在互联网上搜索并思考了一段时间,但无法理解我们可以使用!has() 吗?我尝试了一些示例,但无法确定自己的想法。这里的任何人都可以向我解释为什么我们可以使用它或为什么不使用它?也给我举几个例子!
你正在寻找:not(:has())
:not(:has())
$('div:not(:has(span))') //div which don't have span in it
http://jsfiddle.net/gVzY6/
是的,像这样——
if(!$('#one').has('#two'))
$(collection).filter(function(index) { return !$(this).has('whatever'); });
另一种解决方案。