jQuery隐藏元素文本之间的元素

时间:2014-06-24 18:23:36

标签: javascript jquery html css

我想隐藏来自div元素的文本元素。例如,我有这个元素:

<div style="position: absolute; left: 10px; 
            bottom: 10px; z-index: 100000; 
            visibility: visible; display: block; 
            color: rgb(255, 255, 255); 
            text-shadow: none; font-family: sans-serif; 
            font-size: 10px; font-weight: bold; 
            padding: 2px; border: 1px solid rgb(68, 0, 0); 
            background-color: rgb(221, 0, 0);">
   hi all users
 </div>

在此代码中,我想使用hi all users文本隐藏此div。请帮我。感谢

1 个答案:

答案 0 :(得分:1)

您应该可以使用:contains选择器:

$('div:contains("hi all users")').css('display', 'none');

Example