Heim  >  Artikel  >  Web-Frontend  >  让你的CSS像Jquery一样做筛选的实现方法_jquery

让你的CSS像Jquery一样做筛选的实现方法_jquery

WBOY
WBOYOriginal
2016-05-16 18:05:021016Durchsuche

语法说明:
E -- 元素
att -- 属性
val -- 属性值


E:first-child
E:last-child

匹配文档中具有att属性的E元素
语法: E[att]

匹配文档中具有att属性且其值为val的E元素
语法: E[att=val]

匹配文档中具有att属性且其中一个值(多个值使用空格分隔)为val(val不能包含空格)的E元素
语法: E[att~=val]

匹配文档中具有att属性且其中一个值为val,或者以val开头紧随其后的是连字符的E元素
语法: E[att|=val]

匹配文档中具有att属性且其值的前缀为val的E元素
语法: E[att^=val]

匹配文档中具有att属性且其值的后缀为val的E元素
语法: E[att$=val]

匹配文档中具有att属性且其包含val的E元素
语法: E[att*=val]

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn