1.我們可以利用http的重定向來跳轉
window.location.replace("http://www.jb51.net");
2.使用href來跳轉
window.location.href = "http://www.jb51.net";
3.使用jQuery的屬性替換方法
3.1 $(location).attr(
'href'
,
'http://www.jb51.net'
);
3.2 $(window).attr(
'location'
,
'http://www.jb51.net'
);
3.3 $(location).prop(
'href'
,
'http://www.jb51.net'
)