我使用了PHP的网页重定向。但是如果可能的话,我想用Javascript或jQuery来做。 我想在点击按钮或类似的东西时将用户重定向到另一个页面。
答案 0 :(得分:2)
您可以使用jQuery的attr()方法来重定向网页:
var url = "http://google.com";
$(location).attr('href',url);
答案 1 :(得分:1)
javascript重定向有几种方法。您可以使用以下任何一种方法:
window.location.href = ”submit.php”;
或
window.location.replace("http://google.com");
或
window.location.assign("http://bing.com");
我建议 location.href 。
您还可以查看这个有用的Javascript redirect tutorial。