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.moveTo

概述

将当前窗口移动到指定的坐标位置。

语法

window.moveTo(x, y) 

参数

  • x 是要移动到的位置横坐标
  • y 是要移动到的位置纵坐标

示例

function origin() {
  // 把窗口移动到坐上角
  window.moveTo(0, 0);
}

附注

本函数按照指定的绝对位置移动当前窗口,而window.moveBy函数按照与当前位置相对的距离移动当前窗口。

从Firefox 7开始,如果符合下列情况,则普通网页中的JavaScript无法通过调用该函数来移动浏览器窗口

  1. 当前窗口或标签页不是由window.open方法创建的
  2. 当前标签页所在的窗口包含有多个标签页

规范

DOM Level 0 不属于任何标准.

文档标签和贡献者

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