js点击跳转到指定页面 jq页面跳转到新页面


js点击跳转到指定页面 jq页面跳转到新页面

文章插图
1.使用Jquery实现跳转
$(location).attr('href',"http://www.google.com");$jq(window).attr("location","http://www.google.com");$(location).prop('href',"http://www.google.com");2.使用JavaScript实现跳转
// 相当于 HTTP redirectwindow.location.replace("http://stackoverflow.com");// 相当于 clicking on a linkwindow.location.href = "http://stackoverflow.com";JavaScript其它的可实现页面跳转的方式
window.history.back(-1);window.navigate("top.jsp"); //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='https://www.520longzhigu.com/path';window.history.go(-1);3.页面跳转路径错误问题
ie8以下的页面跳转需要使用绝对路径,使用相对路径的时候ie会自动网跳转的Url上面加上当前页面的路径,这会导致跳转错误 。下面是解决办法:
function Redirect (url) {var ua = navigator.userAgent.toLowerCase(),


    以上关于本文的内容,仅作参考!温馨提示:如遇健康、疾病相关的问题,请您及时就医或请专业人士给予相关指导!

    「四川龙网」www.sichuanlong.com小编还为您精选了以下内容,希望对您有所帮助: