assign() 方法
assign() 方法可加载一个新的文档。
语法
location.assign(URL)
1 <html> 2 <head> 3 <script type="text/javascript"> 4 function newDoc() 5 { 6 window.location.assign("http://www.baidu.com") 7 } 8 </script> 9 </head> 10 <body> 11 12 <input type="button" value="Load new document" onclick="newDoc()" /> 13 14 </body> 15 </html>