我试图选择这些HTML元素:
<div class="blue">
但不是这些:
<div class="blue" style="font-weight:normal;">
<div class="blue" style="margin:5px;">
<div class="blue" style="text-decoration:none;">
etc.
在实践中,我想只选择所有DIV:
class="blue"
而不是具有两者的DIV:
class="blue" AND the 'style' attribute inside
其中&#39; style&#39;可能并不总是相同(见上文)
答案 0 :(得分:0)
更新,以防您也可以使用它..:
xpath:
//div[@class="blue"][not(@style)]
的CSS:
div:not([style])