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

xiaoxiao2021-02-28  44

方法

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>
转载请注明原文地址: https://www.6miu.com/read-2621883.html

最新回复(0)