该例子通过 location.assign() 方法加载一个新的页面。
<html> <script type="text/javascript"> function setAssign(){ window.location.assign("http://www.baidu.com"); } </script> <body> <button onclick="setAssign()">加载新文档</button> </body> </html>
运行该例子,点击 加载新文档 按钮,触发 Assign() 函数,浏览器将访问百度首页。
说明:实际上 location.assign() 方法的效果与 location.href 是一样的。