最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Find all elements that don't contain a certain string - Stack Overflow

programmeradmin2浏览0评论

Is it possible to select all elements with a certain class, but not if they contain certain .text()?

Here is what I have so far -

<div class="test">0</div>
<div class="test">1</div>
<div class="test">2</div>
<div class="test">3</div>
<div class="test">4</div>

var divList = $(".test").toArray();
var divLength = divList.length;

What I want to do with this code is to not include the <div> with the 0 in it.

Is it possible to select all elements with a certain class, but not if they contain certain .text()?

Here is what I have so far -

<div class="test">0</div>
<div class="test">1</div>
<div class="test">2</div>
<div class="test">3</div>
<div class="test">4</div>

var divList = $(".test").toArray();
var divLength = divList.length;

What I want to do with this code is to not include the <div> with the 0 in it.

Share Improve this question edited Nov 20, 2012 at 21:36 Blazemonger 93.1k27 gold badges145 silver badges181 bronze badges asked Nov 20, 2012 at 18:57 user1124378user1124378 2
  • You can also directly access .length on a jQuery object. – pimvdb Commented Nov 20, 2012 at 19:00
  • you're going to have problems if one of those divs has a 0 anywhere in the text. as far as i know, :contains can't take a regex. – jbabey Commented Nov 20, 2012 at 19:15
Add a ment  | 

5 Answers 5

Reset to default 10
$('.test').not(':contains(0)')

http://api.jquery./contains-selector/

Incidentally, to answer epascarello's question, this will match ANY substring ANYWHERE inside the element. If your numbers go up to 10, it will match and discount that one as well. You'll need a custom selector or a .filter() function if that's an issue for you.

A quick google brought this to the surface http://forum.jquery./topic/jquery-opposite-of-contains

It es down to this

$(".test:not(:contains('0'))")

EDIT

A test by @jbabey shows that the accepted answer is faster, so use that

$(".test").not(":contains(0)");

As a followup on epascarello's answer, the following selector will do an exact match (this is not included in jQuery by default!)

$.expr[":"].econtains = function(obj, index, meta, stack){
    return (obj.textContent || obj.innerText || $(obj).text() || "").toLowerCase() == meta[3].toLowerCase();
}

To do an exact match, you can now use

$(".test").not(":econtains(0)");​

You can try this:-

$(".test:not(:contains('0'))")

Here is a method that does not use :contains selector

You can use .filter() function

$('.test').filter(function(){
    return $(this).text().indexOf('0') < 0 ;
});

Check Fiddle

This is also one of the way to get the desired text: http://jsbin./arifuv/1/edit

var aa = $('.test').filter(':not(:contains(0))').text();

console.log(aa);

// results are ---> 1234
发布评论

评论列表(0)

  1. 暂无评论