aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/window/resizeto/index.html
blob: 96fc9833ed6857b569dec054bfa6eebc64f0fc31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
title: Window.resizeTo
slug: Web/API/Window/resizeTo
translation_of: Web/API/Window/resizeTo
---
<div>
 {{APIRef}}</div>
<h2 id="Summary" name="Summary">概述</h2>
<p>动态调整窗口的大小。</p>
<h2 id="Syntax" name="Syntax">语法</h2>
<pre class="syntaxbox">window.resizeTo(<em>aWidth</em>, <em>aHeight</em>)
</pre>
<h3 id="Parameters" name="Parameters">参数</h3>
<ul>
 <li><code>aWidth</code> 是一个整数,表示新的 {{domxref("window.outerWidth","outerWidth")}}(单位:像素)(包括滚动条、窗口边框等)。</li>
 <li><code>aHeight</code> 是一个整数,表示新的 {{domxref("window.outerHeight","outerHeight")}}(单位:像素)(包括滚动条、标题栏、窗口边框等)。</li>
</ul>
<h2 id="Example" name="Example">示例</h2>
<pre class="brush:js">// 将窗口设置为整个屏幕的 1/4 大小(面积)
function quarter() {
  window.resizeTo(
    window.screen.availWidth / 2,
    window.screen.availHeight / 2
  );
}</pre>
<h2 id="Notes" name="Notes">备注</h2>
<p>从 Firefox 7 开始,不能改变浏览器窗口的大小了,要依据<a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=565541#c24">下面的规则</a></p>
<ol>
 <li>不能设置那些不是通过 window.open 创建的窗口或 Tab 的大小。</li>
 <li>当一个窗口里面含有一个以上的 Tab 时,无法设置窗口的大小。</li>
</ol>
<p>相关链接 {{domxref("window.resizeBy")}}.</p>
<h2 id="规范">规范</h2>
<p>{{dom0}}</p>