js和jq跳转到另一个页面或者在另一个窗口打开页面
程序员文章站
2022-03-03 22:55:01
$("#pic").click(function(){
location.href='newpage.html';
});
上面的相当于<a href="newpage.html" target="_self"><img src="img.jpg" /></a>
$("#pic").click(function(){
window.open('newpage.html');
});
相当于<a href="newpage.html" target="_blank"><img src="img.jpg" /></a>
我们可以利用http的重定向来跳转
window.location.replace("http");
使用href来跳转
window.location.href = "http";
使用jquery的属性替换方法
$(location).attr('href', 'http://www.jb51.net'); $(window).attr('location','http://www.jb51.net'); $(location).prop('href', 'http//www.jb51.net')
转自:https://www.cnblogs.com/zmdComeOn/p/12184610.html