:attr 介绍
This very small plugin to jQuery adds the ‘:attr’ selector to the custom
selector list.
It allows specifying more advanced options on attributes than the usual
[@attribute] selector.
Example of use:
$('p:attr( @id>2 && @id<4 )').hide(); would hide every paragraphs with 2<id<4...
You can compare strings with the following Syntax:
$('p:attr( "@id">"B" )'); would select every paragraphs where id>B in alphabetical order.
The expression placed in parameter will be evaluated with the attributes
values and you can put any boolean-evaluated expression inside the parenthesis
like the following
$('p:attr((@id==1) || (@id>2 && @id<4))').hide();
:attr 官网
http://plugins.jquery.com/project/AttributeSelector
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。