admin管理员组文章数量:1350282
I want to set all items of specific class to a specific value, but IF it has a specific attribute set, it must match a condition.
Example:
<div class="address"></div>
<div class="address" data-address-type="from"></div>
<div class="address" data-address-type="to"></div>
I want to set all address to "123 Some Address Road". However, if there is a data-address-type, only if the data-address-type is "to".
$('.address[data-address-type="to"]').text('123 Some Address Road');
The above will not change the elements where data-address-type is not defined.
I want to set all items of specific class to a specific value, but IF it has a specific attribute set, it must match a condition.
Example:
<div class="address"></div>
<div class="address" data-address-type="from"></div>
<div class="address" data-address-type="to"></div>
I want to set all address to "123 Some Address Road". However, if there is a data-address-type, only if the data-address-type is "to".
$('.address[data-address-type="to"]').text('123 Some Address Road');
The above will not change the elements where data-address-type is not defined.
Share edited Oct 31, 2013 at 5:06 Bradley asked Oct 31, 2013 at 4:50 BradleyBradley 2,1412 gold badges21 silver badges32 bronze badges 4-
There are no conditional selectors. Use the
.filter()
method. – Barmar Commented Oct 31, 2013 at 4:51 - 1 try jsfiddle/arunpjohny/nSW7L/1 – Arun P Johny Commented Oct 31, 2013 at 4:58
- You need quotes around the 'to' - they have to be different than the apostrophe you use around the whole selector. Change it to "to" and try that. – Trojan Commented Oct 31, 2013 at 5:01
- Ty @trojansdestroy - That was a typo though... fixed! – Bradley Commented Oct 31, 2013 at 5:10
3 Answers
Reset to default 8You need to use a filter()
for this, in .address
elements filter elements which either does not have the data-address-type
attribute using :not([data-address-type])
or data-address-type
has the value to
using [data-address-type="to"]
$('.address').filter(':not([data-address-type]), [data-address-type="to"]').html('')
Demo: Fiddle
Try this:
[data-address-type='to']
means attribute
data-address-type having value
equal to to.
$(".address[data-address-type='to'],.address:not([data-address-type])").text("123 Some Address Road");
Fiddle here.
More information here.
Use a bination of $(".address")
and the Attribute Equals Selector or Attribute Not Equal Selector.
本文标签: javascriptHow do I define a conditional attribute selector in jQueryStack Overflow
版权声明:本文标题:javascript - How do I define a conditional attribute selector in jQuery? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743692542a2522951.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论