assign() 方法

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>
上一篇:模拟实现死亡之Ping(Ping of death)


下一篇:PL/SQL Developer自动补全SQL技巧