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


HTML Screen availHeight用法及代碼示例


Screen availHeight屬性用於返回用戶屏幕的高度(以像素為單位)。 Screen availHeight屬性返回的值不包括Windows任務欄之類的接口函數。

用法:

screen.availHeight

以下示例程序旨在說明Screen的availHeight屬性Property:

獲取用戶屏幕的高度。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Screen availHeight property in HTML 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Screen availHeight property</h2> 
  
    <p> 
      or returning the screen size, double 
      click the "Screen Height" button:  
    </p> 
  
    <button ondblclick="screen_height()"> 
      Screen Height 
    </button> 
  
    <p id="height"></p> 
  
    <script> 
        function screen_height() { 
  
            var h =  
                "Screen Height:" + screen.availHeight + "px"; 
            document.getElementById("height").innerHTML = h; 
  
        } 
    </script> 
  
</body> 
  
</html> 
                               

輸出:



單擊按鈕後

支持的瀏覽器:屏幕availHeight支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari

相關用法


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