$("#pic").click(function(){ location.href='newpage.html'; }); 上面的相當於<a href="newpage.html" target="_self"><img src="img.jpg" /></a> $("#pic").click(fu ...
$("#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//www.jb51.net");
使用href來跳轉
window.location.href = "http//www.jb51.net";
使用jQuery的屬性替換方法
$(location).attr('href', 'http://www.jb51.net'); $(window).attr('location','http://www.jb51.net'); $(location).prop('href', 'http//www.jb51.net')
使用jQuery的屬性替換方法結束