js如何使用fetch请求一个html
时间: 2023-06-03 08:03:48 浏览: 399
前端使用HTML和JavaScript(通过Fetch API发送请求)后端使用Node.js和Express框架的案例
页面并获取其中的内容?
你可以使用fetch API来请求该页面,并使用.text()方法将响应解析为文本格式。以下是示例代码:
```
fetch('https://example.com/sample-page.html')
.then(response => response.text())
.then(html => {
console.log(html); // 打印HTML内容
})
.catch(error => {
console.error(error); // 处理错误
});
```
请注意,示例代码中的URL需要替换为您自己要请求的网页的URL。
阅读全文