属性过滤选择器

来源:互联网 发布:淘宝培训 编辑:程序博客网 时间:2024/04/30 22:07

1、[attribute]  具有attribute属性

2、[attribute=value] 具有attribute属性,且属性值为value

3、[attribute!=value] 具有attribute,且属性值不为value

4、[attribute^=value]具有 attribute,且属性值以value开头

5、[attribute$=value] 具有 attribute,且属性值以value结尾

6、[attribute|=value] 具有 attribute,且属性值以value为前缀,即使 8563——456,以8563为前缀

7、[attribute~=value] 具有attrubute,且属性值中以空格分开后会有value值

8、[attribute][attribute][attribute] 不断的缩小范围

0 0