是否有可能获得h
/ div
/ span
等文字= xxx?
示例:<h2>Advertisement</h2>
是否可以获取文字为<h2>
的所有"Advertisement"
并通过CSS设置display:none
?
答案 0 :(得分:2)
不使用纯CSS,但如果您使用的是jQuery,请尝试以下方法:
$( "h:contains('Advertisement')" ).css( "display", "none" );
答案 1 :(得分:0)
使用纯CSS执行此操作的唯一方法是:
.ad{
display:none;
}
HTML:
<div class="ad">Advertisement</div>
<h1 class="ad">Advertisement</h1>