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.
如何以最简单的方式从 html 页面中提取一些内容,例如所有父级为 p 且属于 A 类的强标签?xpath 等效项是 .//p[@class='A']/strong。
“最简单的方法”非常非常值得商榷;您是否很容易使用 QtWebkit 解析页面,然后使用 QWebFrame::findAllElements + CSS2 选择器来获得您想要的内容?(或者,您可以注入 jQuery,然后使用它来导航 dom)