moveBy() 方法可相对窗口的当前坐标把它移动指定的像素。
所有主要浏览器都支持 moveBy() 方法
把窗口相对其当前位置移动250个像素:
<!DOCTYPE html> < html > < head > < meta charset = "utf-8" > < title >菜鸟学堂(edu.jb51.net)</ 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 > |