admin管理员组文章数量:1340634
I have some div tag below:
<div class="magazine"></div>
<div class="newsletter"></div> // I need to take this div
<div class="may-moon"></div>
If I needed div with class start with "ma", I would use $('div[class^="ma"]')
, but what is opposite? thanks.
I have some div tag below:
<div class="magazine"></div>
<div class="newsletter"></div> // I need to take this div
<div class="may-moon"></div>
If I needed div with class start with "ma", I would use $('div[class^="ma"]')
, but what is opposite? thanks.
- 2 Opposite as in "doesn't start with" or "ends with"? – Dennis Commented Jun 27, 2013 at 1:35
- Does opposite mean, does not start with "ma"? Or do you want endswith instead of startswith? – Daniel Gimenez Commented Jun 27, 2013 at 1:35
- not selector, learn about it. – epascarello Commented Jun 27, 2013 at 1:36
- Doesn't start with... – Aldi Unanto Commented Jun 27, 2013 at 1:49
3 Answers
Reset to default 14The opposite would be to use jQuery :not():
$('div:not([class^="ma"])')
You can use the negative filtering function "not" like this: $('div').not('[class^="ma"]')
, or the negative selector ":not" like this: $('div:not([class^="ma"])')
(as pointed by Karl-André Gagnon)
You need to use :not() Selector
for this. because there is no exact opposite selector exist of [^=]
and *
in jquery.
:not() Selector - Selects all elements that do not match the given selector.
See more about Jquery selectors
There a opposite selector exist !
-
Attribute Not Equal Selector [name!="value"] - Select elements that either don’t have the specified attribute, or do have the specified attribute but not with a certain value.
but use of this !
selector, you need to provide full-name of class.
$('div[class!="magazine"][class!="may-moon"]')
Try This
本文标签: javascriptjQuery opposite of quotstarts withquot selector Stack Overflow
版权声明:本文标题:javascript - jQuery opposite of "starts with" selector: [^=] - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743646935a2515668.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论