replace() 方法可用一个新文档取代当前文档。
location.replace(newURL)
所有主要浏览器都支持 replace() 方法
使用 replace() 方法来替换当前文档:
运行一下 »<html>
<head>
<script>
function replaceDoc()
{
window.location.replace("http://www.shouce.ren")
}
</script>
</head>
<body>
<input type="button" value="Replace document" onclick="replaceDoc()">
</body>
</html>