$("div:has(p)") 和$("div").has(p)是不是一样的
是的
到了jquery.com看了看,貌似没有 $("div").has(p) 吧?????????
直接用 $("div").filter(function(){
return $("p",this).length==0;
})