<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>URL跳轉</title>
</head>
<body>
<script type="text/javascript" src="jquery-1.10.1.min.js" ></script>
<script>
//隱藏轉跳,瀏覽器不產生歷史記錄(replace)
//window.location.replace("http://onestopweb.iteye.com/");
//當然我們還不能忘記常用的a標簽(href)
//window.location.href = "http://onestopweb.iteye.com/";
//JQ跳轉
$(location).attr('href','http://onestopweb.iteye.com/');
</script>
</body>
</html>
