使用xpath提取页面所有a标签的href属性值

# -*- coding: utf-8 -*-

#1.选取节点
#获取所有的div元素 //div
#/代表获取根节点的直接子元素
#获取所有带有id属性的div //div[@id]
#2.谓词(索引从1开始)
#获取body下面的第一个/最后一个div元素/前两个 //body/div[1] //body/div[last()] //body/div[position<3]
#获取具有class='price'属性的div标签 //div[@class='price']
#3.通配符
# * |
#4.运算符 and or import requests
from lxml import etree url = "http://www.baidu.com"
resp = requests.get(url)
resp.encoding="utf-8" html = etree.HTML(resp.text)
#获取所有a标签的href属性
linklist = html.xpath("//a/@href") for item in linklist:
print(item)
上一篇:How to: Initialize Business Objects with Default Property Values in Entity Framework 如何:在EF中用默认属性值初始化业务对象


下一篇:js和jquery通过this获取html标签中的属性值