案例:JavaScript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function newDoc()
6
 {
7
 window.location.assign("//www.w3xue.com")
8
 }
9
</script>
10
</head>
11
<body>
12
13
<input type="button" value="加载新文档" onclick="newDoc()">
14
15
</body>
16
</html>
17