HTML如何实现点击button页面跳转

HTML如何实现点击button页面跳转,第1张

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视频教程

以上就是HTML如何实现点击button页面跳转的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/web/691138.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-04-21
下一篇2022-04-21

发表评论

登录后才能评论

评论列表(0条)

    保存