--- title: Document.width slug: Web/API/Document/width translation_of: Web/API/Document/width ---
注意: 從 {{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 /* 視窗的寬度 */
HTML5