JS给按钮添加跳转功能类似a标签
更新时间:2017年05月30日 10:52:55 作者:loetca
这篇文章主要介绍了JS给按钮添加跳转功能类似a标签,需要的朋友可以参考下
方法
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标签,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
相关文章
微信小程序踩坑记录之解决tabBar.list[3].selectedIconPath大小超过40kb
这篇文章主要给大家介绍了关于微信小程序踩坑记录之解决tabBar.list[3].selectedIconPath大小超过40kb的相关资料,文中通过示例代码介绍的非常详细,需要的朋友参考借鉴,下面随着小编来一起学习学习吧2018-07-07
最新评论