web-dev-qa-db-ja.com

jQuery、要素にテキストがあるかどうかを調べる

私はいくつかの生成されたスパンを扱っていますが、そのうちのどれにテキストが含まれていないかを見つけたいです。

マークアップは次のとおりです。

<span id="layer6">
    <span class="drag col">  Some text</span>
    <span class="drag col">  More text</span>
    <span class="drag col">  </span>
    <span class="drag col">  I also have text</span>
</span>

私はこのコードで「テキスト」があるものを取得できますが、空のものを取得できません:

if ($('#layer6 > span.col:contains("some text")').length > 0) {
    alert ("I have text");
}

空のものを取得する方法は?私は.lengthを使用してそれを行うことを考えていますが、私は管理しませんでした。

33
Mircea
$("span.col").each(function(){
    if (!$(this).text().trim().length) {
        $(this).addClass("foo");
    }
});

http://jsfiddle.net/cfgr9/1/

明らかに、クラスを追加する代わりに、好きなように行うことができ、オブジェクトを返すなど

更新:jsエラーの原因となった最後のセミコロンの後の奇妙な隠し文字を削除しました。

49
Alex
$('span:empty').css('background-color','red');
9
luminancedesign

filterを使用して、テキストコンテンツを含まない要素をフィルターします。

$('#layer6 > span.col').filter(function(){
    return $(this).text().trim() != "";
}).length
9
Gumbo

私はそのようなセレクターを知りませんが、書くのは簡単です

jQuery.expr [':']。empty = function(obj){return jQuery(obj).text()。replace(/ ^\s + |\s + $ /、 "").length == 0; }

jQuery.expr[':'].hasNoText = function(obj) {
    return jQuery.trim(jQuery(obj).text()).length == 0;
}

そして、例えば

$("#layer6 span:hasNoText").text("NEW TEXT")

グーグルの利益のためだけに、ここに拡張版があります。 $( "node:matches(/ regexp /)")は、テキストコンテンツが指定された正規表現に一致するノードを選択します。

    <script>
    /// :matches(regexp)    
    /// regexp is like js regexp except that you should double all slashes
    jQuery.expr[':'].matches = function(obj, index, args) {
        var m = (args[3] + "").match(/^\/(.+?)\/(\w*)$/);
        var re = new RegExp(m[1], m[2]);
        return jQuery(obj).text().search(re) >= 0;
    }
    </script>

デモ:

    <script>
    $(function() {
        $("div").click(function() {
            $("div:matches(/foobar/)").text("foobar was here")
            $("div:matches(/foo\\s+bar/i)").text("some text")
            $("div:matches(/^\\s+$/)").text("only spaces")
        });
    });
    </script>

    html before 

    <div>foobar</div>
    <div>Foo Bar</div>
    <div>       </div>

    html after 

    <div>foobar was here</div>
    <div>some text</div>
    <div>only spaces</div>
5
user187291