當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Screen width屬性用法及代碼示例


屏幕寬度屬性用於返回用戶屏幕的總寬度。它返回屏幕的總寬度(以像素為單位)。

用法:

screen.width

返回值:一個數字,表示用戶屏幕的總寬度(以像素為單位)

以下示例程序旨在說明屏幕寬度屬性:

檢查用戶屏幕的總寬度。

HTML


<!DOCTYPE html> 
<html> 
<head> 
    <title> 
        Screen width Property in HTML 
    </title> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        h2 { 
            font-family: Impact; 
        } 
          
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Screen width Property</h2> 
      
<p> 
      For checking the screen's width,  
      double click the "Check width" button: 
    </p> 
  
    <button ondblclick="width()"> 
        Check width 
    </button> 
  
    <p id="wd"></p> 
  
    <script> 
        function width() { 
            var w = "Total Screen Width in Pixels: " 
                                    + screen.width; 
            document.getElementById("wd").innerHTML = w; 
        } 
    </script> 
  
</body> 
</html>

輸出:
在點擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:支持的瀏覽器屏幕寬度列出如下:

  • 穀歌瀏覽器 1 及以上版本
  • 邊 12 及以上
  • Internet Explorer 4 及更高版本
  • 火狐瀏覽器1及以上版本
  • Opera 12.1 及以上版本
  • Safari 1 及以上版本


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML DOM Screen width Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。