2010-08-25 28 views

回答

6
$('h3').each(function(n, e) { 
    $(e).next().is('p') || $(e).hide(); 
}); 
3
$('h3').filter(function() { return !$(this).next().is('p') }).hide(); 
相關問題