首页 > 编程 > HTML > 正文

html中通过点击button标签实现页面跳转的三种方法

2020-03-24 13:53:20
字体:
来源:转载
供稿:网友

方法1:使用onclick事件

<input type="button" html' target='_blank'>value="按钮"onclick="javascrtpt:window.location.href='http://www.baidu.com/'" />

或者直接使用button标签

<button onclick="window.location.href = 'https://www.baidu.com/'">百度</button>

(推荐教程:html教程)

方法2:在button标签外套一个a标签

<a href="http://www.baidu.com/">    <button>百度</button></a>

或使用

<a href="http://www.baidu.com/"><input type="button" value='百度'></a>

方法3:使用JavaScript函数

<script>function jump(){ window.location.href="http://www.baidu.com/";}</script><input type="button" value="百度" onclick=javascrtpt:jump() />// 或者<input type="button" value="百度" onclick="jump()" />// 或者<button onclick="jump()">百度</button>

更多编程相关内容,请关注武林网编程入门栏目!

以上就是html中通过点击button标签实现页面跳转的三种方法的详细内容,更多请关注武林网其它相关文章!

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表