我們的志工尚未將此文章翻譯為 正體中文 (繁體) 版本。加入我們,幫忙翻譯!
Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
Note: Starting in Gecko 6.0, document.width
is no longer supported. Instead, use document.body.clientWidth
. See element.clientWidth
.
Returns the width of the <body>
element of the current document in pixels.
Not supported by Internet Explorer.
Syntax
pixels = document.width;
Example
function init() { alert("The width of the document is " + document.width + " pixels."); }
Alternatives
document.body.clientWidth /* width of <body> */ document.documentElement.clientWidth /* width of <html> */ window.innerWidth /* window's width */
Specification
HTML5
See also
文件標籤與貢獻者
標籤:
此頁面的貢獻者:
teoli,
ianbicking,
kscarfone,
Prachi_Dighe,
Sheppy,
ethertank,
ziyunfei,
pimmhogeling,
Jürgen Jeka,
fscholz,
timemachine3030,
Ms2ger,
George3,
Ptak82,
Mw22,
Nickolay,
Dria,
JesseW
最近更新:
teoli,