2

我有一些 H3 元素,有时后面跟着一个 P 元素。我想检查一下h3之后的下一个元素是否是ap,如果不是,隐藏那个h3。

4

2 回答 2

6
$('h3').each(function(n, e) {
    $(e).next().is('p') || $(e).hide();
});
于 2010-08-26T00:03:05.647 回答
3
$('h3').filter(function() { return !$(this).next().is('p') }).hide();
于 2010-08-26T00:05:17.710 回答