如何去使用jQuery的URL?
这个问题在这里已经有了答案:
//As an HTTP redirect (back button will not work )
window.location.replace("http://www.google.com");
//like if you click on a link (it will be saved in the session history,
//so the back button will work as expected)
window.location.href = "http://www.google.com";
为什么不使用?
location.href='http://www.example.com';
<!DOCTYPE html>
<html>
<head>
<script>
function goToURL() {
location.href = 'http://google.it';
}
</script>
</head>
<body>
<a href="javascript:void(0)" onclick="goToURL(); return false;">Go To URL</a>
</body>
</html>
window.location就是你需要的。 你可以做的其他事情是创建锚点元素并模拟点击它
$("<a href='your url'></a>").click();
链接地址: http://www.djcxy.com/p/1935.html