jquery跳转页面的方法:通过使用属性替换方法attr()或prop()来实现跳转,如【$(location).attr('href', 'url地址')】、【$(location).prop('href', 'url')】。
本教程操作环境:windows7系统、jquery3.3.1版,该方法适用于所有品牌电脑。
jquery跳转页面的方法有以下几种:
(学习视频分享:jquery视频教程)
1、利用http的重定向来跳转
window.location.replace("//m.sbmmt.com");
2、使用href来跳转
window.location.href = "//m.sbmmt.com";
3、使用jQuery的属性替换方法来实现跳转
$(location).attr('href', '//m.sbmmt.com'); $(window).attr('location','//m.sbmmt.com'); $(location).prop('href', '//m.sbmmt.com')
相关推荐:js教程
Atas ialah kandungan terperinci jquery中怎么跳转页面. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!