小编给大家分享一下HTML怎么实现点击button页面跳转,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
方法:1、使用onclick事件,在标签内添加“onclick="window.location.href=地址"”即可;2、在button标签外套一个a标签,在a标签中用href属性添加跳转代码。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
方法1:使用onclick事件
<input type="button" value="按钮" onclick="javascrtpt:window.location.href='http://www.baidu.com/'" />
或者直接使用button标签
<button onclick="window.location.href = 'https://www.baidu.com/'">百度</button>
方法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页面跳转”有了一定的了解,如果想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。