이 문서는 아직 자원 봉사자들이 한국어로 번역하지 않았습니다. 함께 해서 번역을 마치도록 도와 주세요!
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,