[attribute!=value]
創(chuàng)新互聯(lián)公司是一家專(zhuān)注于成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),鉛山網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專(zhuān)注于網(wǎng)站建設(shè)10多年,網(wǎng)設(shè)計(jì)領(lǐng)域的專(zhuān)業(yè)建站公司;建站業(yè)務(wù)涵蓋:鉛山等地區(qū)。鉛山做網(wǎng)站價(jià)格咨詢(xún):18982081108
概述
匹配所有不含有指定的屬性,或者屬性不等于特定值的元素。
此選擇器等價(jià)于:not([attr=value])
要匹配含有特定屬性但不等于特定值的元素,請(qǐng)使用[attr]:not([attr=value])
參數(shù)
attributeString屬性名
value (可選)String屬性值。引號(hào)在大多數(shù)情況下是可選的。但在遇到諸如屬性值包含"]"時(shí),用以避免沖突。
示例
描述:
查找所有 name 屬性不是 newsletter 的 input 元素
HTML 代碼:
input type="checkbox" name="newsletter" value="Hot Fuzz" /
input type="checkbox" name="newsletter" value="Cold Fusion" /
input type="checkbox" name="accept" value="Evil Plans" /jQuery 代碼:
$("input[name!='newsletter']").attr("checked", true);結(jié)果:
[ input type="checkbox" name="accept" value="Evil Plans" checked="true" / ]
Js代碼??
1 、$('li').not(':even').css('background-color',?'red');
Js代碼??
1、 $('li').not(document.getElementById('notli'))
2 ?、 .css('background-color',?'red');
Js代碼??
1、 $("div").not(".green,?#blueone")
2 、 ? ? ? ? ?.css("border-color",?"red");
Js代碼??
1 、Example:?Removes?the?element?with?the?ID?"selected"?from?the?set?of?all?paragraphs.
2、 $("p").not(?$("#selected")[0]?) ?。
3 、Example:?Removes?the?element?with?the?ID?"selected"?from?the?set?of?all?paragraphs.
4 、$("p").not("#selected") ?。
5 、Example:?Removes?all?elements?that?match?"div?p.selected"?from?the?total?set?of?all?paragraphs.
6 、$("p").not($("div?p.selected")) ?。
Js代碼??
1、 $("#reset").click(function()?{ ?。
2 、 ?$(':input','#fundingpossibility') ?。
$("#id").find("img").length
==
不包含img標(biāo)記的標(biāo)簽
高級(jí)點(diǎn)的
div
span1/span
/div
div
p1/p
/div
div
p1/p
/div
$("div:not(:has(span))")
;//選中div
節(jié)點(diǎn)下不包含span標(biāo)記的div元素