屏幕:width 属性

Screen.width 只读属性以 CSS 像素返回屏幕的宽度。

一个数字。

示例

js
// Crude way to check that the screen is at least 1024x768
if (window.screen.width >= 1024 && window.screen.height >= 768) {
  // Resolution is 1024x768 or above
}

注释

请注意,此属性提供的宽度可能并非全部可用于窗口本身。当其他小部件占用 window 对象无法使用的空间时,window.screen.widthwindow.screen.availWidth 之间存在差异。另请参阅 screen.height

规范

规范
CSSOM 视图模块
# dom-screen-width

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。