嗨,有人可以帮我写一个复杂的选择器,我发现链接中没有包含“video”字样的所有HREF被选中
.ico-wrap[href:not([href*="/video/"])]
需要帮助href:不是部分。谢谢
答案 0 :(得分:2)
你的href
太多了。{/ p>
.ico-wrap:not([href*="/video/"])
DEMO:http://jsfiddle.net/w3kKM/
这将选择没有href
值的元素,如果您只想选择href
的元素,那么您可以这样做:
.ico-wrap[href]:not([href*="/video/"])