我一次至少有 4 个按钮
<a class="test" id="4" href="#">Browse</a>
<a class="test" id="5" href="#">Browse Catalogue</a>
<a class="test" id="6" href="#">Browse Albums</a>
<a class="test" id="7" href="#">Browse people</a>
我想删除或隐藏只显示“浏览”的那个。所有其他人仍应保持可见。基本上是下面的非jquery。它需要是纯JS。
$('.test').filter(function () {
return $(this).text() == 'Browse';
}).hide();
谢谢你的帮助。