Home > Backend Development > PHP Tutorial > javascript - xpath, 如何获取herf的文本内容

javascript - xpath, 如何获取herf的文本内容

WBOY
Release: 2016-06-06 20:06:43
Original
2058 people have browsed it

我打算用Scrapy框架爬取一个网站的数据

JS控制台上,我用$x('//div[@class="summary"]//div[contains(@class, "tags")]')这个命令获取了我想要的数据,但是我得对我的数据进行过滤。
下图是我在浏览器的JS控制台输出的结果
javascript - xpath, 如何获取herf的文本内容

我想用xpath继续过滤,把绿色框框里的数据过滤出来,请问如何写xpath语句?

回复内容:

我打算用Scrapy框架爬取一个网站的数据

JS控制台上,我用$x('//div[@class="summary"]//div[contains(@class, "tags")]')这个命令获取了我想要的数据,但是我得对我的数据进行过滤。
下图是我在浏览器的JS控制台输出的结果
javascript - xpath, 如何获取herf的文本内容

我想用xpath继续过滤,把绿色框框里的数据过滤出来,请问如何写xpath语句?

$x('//div[@class="summary"]//div[contains(@class, "tags")]/a//text()')

没测试过

用a/text()这个就可以获取

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template