Screen: 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.width和window.screen.availWidth之間會存在差異。另請參閱screen.height。
規範
| 規範 |
|---|
| CSSOM 檢視模組 # dom-screen-width |
瀏覽器相容性
載入中…