" />
开发者

Question about jQuery Selectors

i 开发者_如何转开发want to select all h1 tags except myclass with jQuery. For example i want select < h1> but i don't want to select < h1 class="myclass">

Thanks


Try the :not() selector or not method:

$("h1:not(.myclass)")
$("h1").not(".myclass")


$("h1:not('.myclass')")

http://api.jquery.com/not-selector/

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜