如何隐藏包含" text"作为标题

时间:2012-03-28 02:58:08

标签: jquery css jquery-selectors

我想隐藏一个包含标题为“问题”的标签,这个标签不是由我生成的。所以它没有ID。

这是我写的jQuery,但它似乎无法正常工作

    <script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery("a:contain('Question')").hide();
});

</script>

有人可以帮助我

2 个答案:

答案 0 :(得分:1)

你几乎是正确的。选择器是“a:contains('Question')”

(它包含,不包含)。

请参阅http://jsfiddle.net/YCCVc/

答案 1 :(得分:0)

$('selector[title="Question"]').dosomething()