1

在下面的代码片段中,我想在没有类属性的情况下获得 <b> 标记的第一次出现。

<html>
<body>
     <p>This is the <b class="abc">text in bold with a class attribute</b> and the following is <b> text in bold without a class attribute</b>
</body>
</html>   

任何指针?

4

1 回答 1

7

That would be:

doc.at('b:not([class])')
于 2013-02-20T13:06:07.647 回答