xpath可以获取链接内容吗
时间: 2023-08-31 08:03:08 浏览: 151
python-xpath获取html文档的部分内容
5星 · 资源好评率100%
是的,XPath可以获取链接内容。要获取链接的文本内容,可以使用`text()`函数,例如:
```python
from lxml import etree
html = '<a href="https://www.example.com">Example</a>'
tree = etree.HTML(html)
link_text = tree.xpath('//a/text()')
print(link_text)
```
输出结果:
```
['Example']
```
在上面的示例中,XPath表达式`//a/text()`用于选择a标签的文本内容,`text()`函数用于获取文本内容。
阅读全文