-2

我想检查一个类元素是否具有相同的 html 内容。

例子;

<span class="test">100</span>
<span class="test">100</span>
<span class="test">98</span>
<span class="test">100</span>
<span class="test">100</span>

我想知道一个元素是否有不同的内容,比如98上面的数字

谢谢

4

3 回答 3

1

试试这样的代码

$(".test").each(function(){
    var val = $(this).html();
    if(val!="100") alert(val);
});

演示视图

于 2013-03-10T19:39:10.130 回答
1

这样做: -

$(".test").each(function() {
    if (Number($(this).text()) > 98)
        alert("Text contains > 98");
});

参考现场演示

于 2013-03-10T19:42:39.670 回答
0

这应该这样做:

    var a = new Array();

    $('.test').each(function(index) {
        text = $(this).text();

        if ($.inArray(text, a) != -1) {
            $(this).hide();
        } else {
            a.push(text);
        }

    });

    return false;
于 2013-03-10T19:39:44.647 回答