匹配具有特定属性的项目但不匹配第二个属性

时间:2015-04-28 09:09:09

标签: html xpath

我试图选择这些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;可能并不总是相同(见上文)

1 个答案:

答案 0 :(得分:0)

css选择器的

更新,以防您也可以使用它..:

xpath:

//div[@class="blue"][not(@style)]

的CSS:

div:not([style])