读取当前文档的大小是 JavaScript 中的一个函数,用于获取当前文档的属性,包括文档的宽度、高度、文档对象模型(DOM)树等。在 JavaScript 中,可以使用 window.innerWidth
和 window.innerHeight
属性获取当前文档的宽度和高度。
完整的代码示例:
// 获取当前文档的大小
const width = window.innerWidth;
const height = window.innerHeight;
// 输出当前文档的宽度和高度
console.log(`The current document width is ${width}px and height is ${height}px.`);
该代码段定义了一个名为 width
和 height
的变量,分别存储当前文档的宽度和高度。然后使用 console.log()
函数输出了当前文档的宽度和高度,格式化输出为 The current document width is 1024px and height is 768px.
。
需要注意的是,如果当前文档中包含多个网页,则 window.innerWidth
和 window.innerHeight
属性将返回包含所有网页的宽度和高度。如果需要获取当前文档中指定元素的大小,可以使用其他方法,例如 elem.style.width
或 elem.offsetWidth
。
领取专属 10元无门槛券
手把手带您无忧上云