小码哥的IT人生

HTML DOM moveBy() 方法

JavaScript基础 2022-06-08 14:59:15小码哥的IT人生shichen

HTML DOM moveBy() 方法

定义和用法

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

语法

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

实例

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

<html>
<head>
<script type="text/javascript">
function moveWin()
  {
  myWindow.moveBy(50,50)
  }
</script>
</head>
<body>
<script type="text/javascript">
myWindow=window.open('','','width=200,height=100')
myWindow.document.write("This is 'myWindow'")
</script>
<input type="button" value="Move 'myWindow'"
onclick="moveWin()" />
</body>
</html>

TIY

完整实例【通过 moveBy() 移动窗口】:

<html>
<head>
<script type="text/javascript">
function moveWin()
  {
  myWindow.moveBy(50,50)
  myWindow.focus()  
  }
</script>
</head>
<body>
<script type="text/javascript">
myWindow=window.open('','','width=200,height=100')
myWindow.document.write("This is 'myWindow'")
</script>
<input type="button" value="Move 'myWindow'" onclick="moveWin()" />
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024