php – 如何在WP Web Scraper中选择一些相同代码的代码?

前端之家收集整理的这篇文章主要介绍了php – 如何在WP Web Scraper中选择一些相同代码的代码?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我使用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"]

但它不起作用.

我的问题:
如何在我的短代码的selector属性中定位此标题,而其他人则被忽略?

最佳答案
我认为您需要在短代码选择器属性添加更多元素,因为显示的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相关文章