Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Window.moveBy()

概述

根据指定的值,移动当前窗口。

语法

window.moveBy(deltaX, deltaY) 

参数

  • deltaX 表示窗口在水平方向移动的像素值。
  • deltaY 表示窗口在垂直方向移动的像素值。

示例

function budge() {
  moveBy(10, -10);
}

备注

可以使用负值作为该函数的参数。该函数产生相对移动,而 window.moveTo 产生一个绝对移动。

从 Firefox 7 开始,依据下面的规则不能再移动一个浏览器里的窗口。

  1. 不能移动非 window.open 创建的窗口或 Tab。
  2. 当一个窗口里有多于一个 Tab 时,不能移动该窗口。

规范

DOM Level 0 不属于任何标准.

相关链接

文档标签和贡献者

 此页面的贡献者: teoli, AlexChao
 最后编辑者: AlexChao,