爬虫select怎么特殊类名怎么选
<div class="stockcodec .xeditor">怎么用select选上面的指定类名的div
我这样写没用怎么办
select(".stockcodec .xeditor") 本帖最后由 isdkz 于 2023-2-22 18:41 编辑
类选择器用点,每一个类名用一个点表示,类名本身的点用反斜杠转义
select(".stockcodec.\.xeditor")
有用的话给个最佳答案呗。 你可以使用以下代码来选取具有指定类名的 div 元素:from bs4 import BeautifulSoup
# 假设 HTML 代码存储在变量html中
soup = BeautifulSoup(html, 'html.parser')
# 选择具有指定类名的div元素
divs = soup.select('div.stockcodec.xeditor')
其中,div.stockcodec.xeditor 选择器表示选择具有 stockcodec 和 xeditor 两个类名的 div 元素。
注意,select 方法返回的是一个元素列表,因此如果你只想选取第一个匹配的元素,可以使用 select_one 方法。例如:
# 选择第一个具有指定类名的div元素
div = soup.select_one('div.stockcodec.xeditor')
页:
[1]