HTML DOM moveBy() 方法

定义和用法

moveBy() 方法可相对窗口的当前坐标把它移动指定的像素。

语法

  1. window.moveBy(x,y)
参数 描述
x 要把窗口右移的像素数
y 要把窗口下移的像素数

实例

下面的例子将把窗口相对其当前位置移动 50 个像素:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function moveWin()
  5. {
  6. myWindow.moveBy(50,50)
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <script type="text/javascript">
  13. myWindow=window.open('','','width=200,height=100')
  14. myWindow.document.write("This is 'myWindow'")
  15. </script>
  16.  
  17. <input type="button" value="Move 'myWindow'"
  18. onclick="moveWin()" />
  19.  
  20. </body>
  21. </html>