--- title: document.width slug: Web/API/Document/width translation_of: Web/API/Document/width ---
{{gecko_callout_heading("6.0")}}
从Gecko 6.0开始,不再支持document.width,请使用
document.body.clientWidth
来代替.查看{{domxref("element.clientWidth")}}.
返回当前文档中的{{HTMLElement("body")}}元素的宽度,单位为像素.Internet Explorer不支持该属性.
pixels = document.width;
function init() { alert("当前文档的宽度为 " + document.width + " 像素."); }
document.body.clientWidth /* <body>元素的宽度 */ document.documentElement.clientWidth /* <html>元素的宽度 */ window.innerWidth /* window的宽度 */
{{DOM0}}