案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function moveWin()
5
  {
6
  myWindow.moveTo(0,0)
7
  myWindow.focus()  
8
  }
9
</script>
10
</head>
11
<body>
12
13
<script type="text/javascript">
14
myWindow=window.open('','','width=200,height=100')
15
myWindow.document.write("This is 'myWindow'")
16
</script>
17
18
<input type="button" value="Move 'myWindow'" onclick="moveWin()" />
19
20
</body>
21
</html>
22