location.assign() 方法加载新的文档

location.assign() 方法加载新的文档
Window Location Assign
 
location.assign() 方法加载新的文档。
 
实例
加载一个新的文档:
 
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<script>
function newDoc(){
    window.location.assign("https://www.runoob.com")
}
</script>
</head>
<body>
<input type="button" value="加载新文档" onclick="newDoc()">
</body>
</html>

推荐阅读