当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Window outerWidth用法及代码示例


窗口的外部宽度属性用于返回浏览器窗口的外部宽度。它包含所有接口元素,例如工具栏,滚动条等。它是只读属性,返回一个数字,该数字代表浏览器窗口的宽度(以像素为单位)。

用法:

window.outerWidth

下面的程序演示了Window的externalWidth属性:

获取浏览器窗口的宽度。

<!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>  

输出:



单击按钮后

支持的浏览器:下面列出了Window externalWidth属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari

相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | Window outerWidth Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。