定义和用法
moveBy() 方法可相对窗口的当前坐标把它移动指定的像素。
语法
window.moveBy(x,y)
所有主要浏览器都支持 moveBy() 方法
实例
把窗口相对其当前位置移动250个像素:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(Web176.com)</title> <script> function openWin(){ myWindow=window.open('','','width=200,height=100'); myWindow.document.write("<p>这是我的窗口</p>"); } function moveWin(){ myWindow.moveBy(250,250); myWindow.focus(); } </script> </head> <body> <input type="button" value="打开我的窗口" onclick="openWin()" /> <br><br> <input type="button" value="移动我的窗口" onclick="moveWin()" /> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/brtips/3712.html