JavaScript: Window Location
window.location 对象用于获得当前页面的地址 (URL),并把浏览器重定向到新的页面。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<head>
<script>
function newDoc(){
window.location="http://www.baidu.com"
}
</script>
</head>
<body>
<input type="button" value="加载新文档" onclick="newDoc()">
</body>
</html>
网友评论