葡萄需要什么土壤(葡萄需要的土壤)
2024-07-02
更新時(shí)間:2024-07-02 08:58:30作者:佚名
1.使用Jquery實(shí)現(xiàn)跳轉(zhuǎn)
$(location).attr('href',"http://www.google.com");$jq(window).attr("location","http://www.google.com");$(location).prop('href',"http://www.google.com");
2.使用JavaScript實(shí)現(xiàn)跳轉(zhuǎn)
// 相當(dāng)于 HTTP redirectwindow.location.replace("http://stackoverflow.com");// 相當(dāng)于 clicking on a linkwindow.location.); //old-ie-onlyself.location = 'top.jsp';top.location = 'top.jsp';window.location=window.locaiton.host;winodw.locaiton.assign('http://www.baidu.com');ducument.location.href='/path';window.history.go(-1);
3.頁面跳轉(zhuǎn)路徑錯誤問題
ie8以下的頁面跳轉(zhuǎn)需要使用絕對路徑,使用相對路徑的時(shí)候ie會自動網(wǎng)跳轉(zhuǎn)的Url上面加上當(dāng)前頁面的路徑,這會導(dǎo)致跳轉(zhuǎn)錯誤。 下面是解決辦法:
function Redirect (url) { var ua = navigator.userAgent.toLowerCase(),