标签:
1.[attribute*=value];
title = "hello world";
[title*="llo"]匹配成功;
E[foo*="abc"]:匹配任何有foo属性值,且属性值包含"abc"的E元素。
2.[attribute~=value];
[title~="hello"]
title = "hello world";//匹配成功
title="stutend hello";//成功
E[foo~="warning"]:匹配任何foo属性以空白作为分隔,其中一个值是"warning"的E元素。
3.[attribute|=value]
E[lang!="en"]:匹配任何lang属性值以"-"作为分隔符,而且第一个精确等于"en"的E元素(也匹配lang属性只有属性值en的元素)。
标签:
原文地址:http://www.cnblogs.com/pmx-pmx/p/4972396.html