欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HTML 相关基础知识

程序员文章站 2022-06-22 16:38:45
Button点击跳转地址 或者直接使用button标签 (推荐教程:html教程) 方法2:在butt...

Button点击跳转地址

<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标签实现页面跳转的三种方法

本文地址:https://blog.csdn.net/u010654440/article/details/107381519

相关标签: HTML