我有一个包含用class="iana-group-15 iana-type-1"
or标记的元素的文档class="iana-group-15 iana-type-1 iana-type-3"
。我想匹配属性中iana-type-1
的所有元素class
。CSS 有符号[class~=iana-type-1]和.iana-type-1对匹配这个非常有用。
使用 XPath 我匹配:
@class="iana-type-1"
or starts-with(@class, "iana-type-1 ")
or contains(@class, " iana-type-1 ")
or substring(@class, string-length(@class) - 11) = " iana-type-1"
这很痛苦。有没有更好的方法可以像使用 CSS 选择器一样简单?