html input跳转网页代码
时间: 2023-08-07 17:06:58 浏览: 138
html 网页跳转代码
HTML中的`input`标签默认是用来接收用户输入的,不会直接跳转到其他网页。如果想要实现点击`input`标签跳转到其他网页,可以使用JavaScript中的`window.location.href`属性来实现。例如,以下代码可以在用户点击`<input>`标签时跳转到百度网页:
```html
<input type="button" value="跳转到百度" onclick="window.location.href='http://www.baidu.com'">
```
其中,`type="button"`表示将`<input>`标签渲染为按钮,`value`属性设置按钮上的文本,`onclick`属性设置点击事件,将`window.location.href`属性设置为目标网页的URL即可实现跳转。
阅读全文