$("#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的属性替换方法结束