Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何编写 xpath 以获取本文中的主要新闻图像?
下面的对我来说失败了。
//div[contains(@class,'sectionColumns')]//div[contains(@class,'column2']//*img"]
我希望它在幻灯片的情况下返回所有图像。我希望它是灵活的,因为当新闻发生变化时,某些类会发生变化。
不看“这篇文章”,你的 XPath 表达式中有一个明显的语法错误:
上面的子字符串: *img", 包含两个错误——*后跟一个名称和一个不平衡的引号。
*img"
*
可能你想要:
//div[contains(@class,'sectionColumns')]//div[contains(@class,'column2']//img]