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


HTML DOM Window outerWidth屬性用法及代碼示例


窗口的outerWidth屬性用於返回瀏覽器窗口的外部寬度。它包括所有接口元素,如工具欄、滾動條等。它是一個隻讀屬性,返回一個代表瀏覽器窗口寬度(以像素為單位)的數字。

用法:

window.outerWidth

返回值:它返回一個代表瀏覽器窗口寬度的數值,包括所有接口元素(以像素為單位)

以下示例程序旨在說明窗口的outerWidth屬性:

獲取瀏覽器窗口的寬度。

html


<!DOCTYPE html> 
<html> 
<head> 
    <title> 
      Window outerWidth Property in HTML 
    </title> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        h2 { 
            font-family: Impact; 
        } 
          
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>Window outerWidth Property</h2> 
    <p> 
      For returning the browser window's width, 
      double click the "Check Width" button: 
    </p> 
    <button ondblclick="pixel()"> 
      Check Width  
    </button> 
    <p id="outerwidth"></p> 
    <script> 
        function pixel() { 
            var width = window.outerWidth; 
            document.getElementById("outerwidth").innerHTML =  
                               "Width : " + width; 
        } 
    </script> 
</body> 
</html>

輸出:

單擊按鈕後:

支持的瀏覽器:支持的瀏覽器窗口outerWidth 屬性列出如下:

  • 穀歌瀏覽器1
  • 邊 12
  • 互聯網瀏覽器 9
  • 火狐1
  • Opera 9
  • 狩獵3


相關用法


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