无法隐藏包含特定文字的链接

时间:2015-08-11 09:36:27

标签: javascript jquery html css

我有以下标记,其中包含一组链接,我想隐藏所有包含“问题”一词的链接,例如“已回答的问题”: -

enter image description here

所以写了以下脚本: -

<script>
  $( document ).ready(function() {
    $('.ms-pivotControl-surfacedOpt a:contains("question")').hide();
  });
</script>

但没有隐瞒任何事情,有人可以在此讨论吗?

1 个答案:

答案 0 :(得分:4)

jQuery的选择器必须是:

$('a.ms-pivotControl-surfacedOpt:contains("question")').hide();