JavaScript

超轻量级php框架startmvc

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

更新时间:2020-05-15 01:42 作者:startmvc
方法window.location.href="要跳转的URL";或window.location="要跳转的URL";或location="要跳转的URL";示例&l

方法


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标签,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!