<div class="one">
<a class="two" href="Something..."><img src="http://..."/></a>
<p> stuff.... </p>
<p><img src="http://....." /></p>
</div>
我有一个我正在解析的愚蠢的 HTML,你可以看到有一个名为 one 的主类和另一个嵌套的名为two的主类。我正在尝试解析第一类中的所有图像,但显然我拥有的 XPath 只捕获一张图像,这是来自第一类的图像
我试过这个:
//div[@class="one"]/img | //a[@class="two"]/img
但显然我没有从二班赶上,但只有从一班才能做到这一点?
我正在使用 lxml.html 的 xpath 功能。