作者:1q2w3e4r5t0405 | 来源:互联网 | 2020-11-30 19:04
jquery中实现跳转页面的方法:可以通过使用jquery的属性替换方法来实现跳转,如【$(location).attr(href,xxxx:xxx.xxx.xxx);】。
jquery中实现跳转页面的方法:可以通过使用jquery的属性替换方法来实现跳转,如【$(location).attr('href', 'xxxx://xxx.xxx.xxx');】。
jquery跳转页面的方法有以下几种:
(学习视频分享:jquery视频教程)
1、利用http的重定向来跳转
window.location.replace("https://www.php1.cn");
2、使用href来跳转
window.location.href = "https://www.php1.cn";
3、使用jQuery的属性替换方法来实现跳转
$(location).attr('href', 'https://www.php1.cn');
$(window).attr('location','https://www.php1.cn');
$(location).prop('href', 'https://www.php1.cn')