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


HTML DOM Window innerWidth属性用法及代码示例


Window innerWidth 属性用于返回窗口内容区域的宽度。它是一个只读属性,返回一个数字,表示浏览器窗口内容区域的宽度(以像素为单位)。

用法:

window.innerWidth

返回值:返回一个表示浏览器窗口内容区域宽度(以像素为单位)的数字。

以下示例程序旨在说明 Window insideWidth 属性:
返回当前帧的宽度。

html


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

输出:

单击按钮后:

支持的浏览器:支持的浏览器窗口 innerWidth 属性列出如下:

  • 谷歌浏览器1
  • 边 12
  • 互联网浏览器 9
  • 火狐1
  • Opera 9
  • 狩猎3


相关用法


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