点击按钮通过js跳转网页
时间: 2023-10-22 20:09:59 浏览: 217
通过按钮实现网页跳转
好的,可以使用如下的JavaScript代码来实现通过按钮点击跳转到指定网页:
```js
document.getElementById("buttonId").addEventListener("click", function(){
window.location.href = "https://www.example.com";
});
```
其中,`buttonId`是你所要绑定的按钮的ID,`https://www.example.com`是你所要跳转的网页地址。你可以将这段代码嵌入到你的HTML文档中,然后将按钮的ID设置为`buttonId`即可。
阅读全文