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.
我有一些 H3 元素,有时后面跟着一个 P 元素。我想检查一下h3之后的下一个元素是否是ap,如果不是,隐藏那个h3。
$('h3').each(function(n, e) { $(e).next().is('p') || $(e).hide(); });
$('h3').filter(function() { return !$(this).next().is('p') }).hide();