我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
The Window.sizeToContent()
method sizes the window according to its content. In order for it to work, the DOM content should be loaded when this function is called, for example once the DOMContentLoaded
event has been thrown.
The minimal size of the window can be clamped.
Syntax
window.sizeToContent()
Example
window.sizeToContent();
Specification
This feature is not part of any specification.
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | ? | (Yes) [1] | ? | ? | ? |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | ? |
(Yes) [2] |
? | ? | ? |
[1] From Firefox 20, the mimimal size is clamped, to prevent the window to be too small for the user to interact with.
[2] On Firefox for Android, this method has no effect as a page is always in a tab.