Jquery包含字符串

时间:2015-12-15 14:10:56

标签: javascript jquery string

我想在特定字符串上添加类,但问题是字符串以数字0开头。

这是我的代码,我只想添加“0 BAM”类但是当我添加这个Jquery时,他在所有具有0和BAM的div上添加类,就像第一个“290 BAM”

<div class="views-field-commerce-price"> 290  BAM</div>
<div class="views-field-commerce-price"> 0  BAM</div>
<div class="views-field-commerce-price"> 223  BAM</div>
<div class="views-field-commerce-price"> 490  BAM</div>

  $('.views-field-commerce-price:contains("0  BAM")').addClass('item-3');

谢谢!

1 个答案:

答案 0 :(得分:13)

我认为您需要完全比较,在这里您可以使用.filter()

$('.views-field-commerce-price').filter(function(){
    return $(this).text().trim() == "0  BAM";
}).addClass('item-3');