bs4获取input值
时间: 2024-01-18 18:04:33 浏览: 161
以下是使用BeautifulSoup4获取input值的示例代码:
```python
from bs4 import BeautifulSoup
import requests
# 发送请求获取HTML页面
url = 'https://www.example.com'
response = requests.get(url)
html_content = response.content
# 解析HTML页面
html_soup = BeautifulSoup(html_content, 'html.parser')
# 获取input标签的value属性值
order_value = html_soup.find('input', attrs={'id': 'order_id'})['value']
print(order_value)
```
上述代码中,我们首先使用requests库发送请求获取HTML页面,然后使用BeautifulSoup库解析HTML页面。接着,我们使用find()方法查找id为'order_id'的input标签,并获取其value属性值。最后,我们将获取到的value属性值打印输出。
阅读全文