assign() 方法可加载一个新的文档。
语法
location.assign(URL)
<html>
<head>
<script type="text/javascript">
function newDoc()
{
window.location.assign("http://www.baidu.com")
}
</script>
</head>
<body> <input type="button" value="Load new document" onclick="newDoc()" /> </body>
</html>