html input点击跳转页面
时间: 2023-11-24 12:47:17 浏览: 156
可以使用 JavaScript 来实现点击 input 元素跳转页面的效果。具体实现方法如下:
1. 给 input 元素添加一个 onclick 事件,当用户点击 input 元素时触发该事件。
2. 在 onclick 事件中使用 window.location.href 属性来跳转页面,例如:window.location.href = "http://www.example.com"。
以下是示例代码:
```html
<input type="button" value="跳转页面" onclick="window.location.href='http://www.example.com'">
```
阅读全文