2012-08-09 32 views

回答

4

試試這個:

$('ul li').not(':has("span.except")') 

DEMO

0

試試這個:

var $lis = $("ul li").filter(function() { 
    return $(this).find("span.except").length == 0; 
}); 
相關問題