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

JS给按钮添加跳转功能类似a标签

程序员文章站 2022-06-29 19:46:32
方法 window.location.href = "要跳转的url"; 或 window.location = "要跳转的url"; 或...

方法

window.location.href = "要跳转的url";

window.location = "要跳转的url";

location = "要跳转的url";

示例

<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>给按钮添加跳转功能【类似a标签】</title>
    <script type="text/javascript">
      window.onload = function(){
        document.getelementbyid("btn").onclick = function(){
          // window.location.href = "https://www.baidu.com/";
          // window.location = "https://www.baidu.com/";
          location = "https://www.baidu.com/";
        };
      };
    </script>
  </head>
  <body>
    <input id="btn" type="button" value="百度一下,你就知道" />
  </body>
</html>

以上所述是小编给大家介绍的js给按钮添加跳转功能类似a标签,希望对大家有所帮助