我使用WP Web Scraper从以下链接获取标题:
http://lpse.acehtenggarakab.go.id/eproc/lelang/view/1316330
标题是:PENGAWASAN / SUPERVISI KEGIatan FISIK TAHUN 2016
标题位于< td>内.具有属性class =“horizLine”的html标记(它位于此html< table>的第二行(< tr> html标记),其中包含68行).
我的WP Web Scraper shorthcode是:
[wpws url="http://lpse.dephub.go.id/eproc/lelang/view/33737114" selector=".horizLine"]
但它不起作用.
最佳答案
我认为您需要在短代码选择器属性中添加更多元素,因为显示的html源是:
atan FISIK TAHUN 2016
这是目标标题的解决方案是选择器=“tr:nth-child(2)td.horizLine b strong”:
[wpws url="http://lpse.dephub.go.id/eproc/lelang/view/33737114" selector="tr:nth-child(2) td.horizLine b strong"]
随着:nth-child(2)我的目标是第二个< tr> HTML元素.
原文链接:https://www.f2er.com/html/425510.html
猜你在找的HTML相关文章