在下面的代码段中,我想第一次出现< 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>
任何指针?
答案 0 :(得分:7)
那将是:
doc.at('b:not([class])')