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


HTML Window top()用法及代码示例


Window top() 属性用于返回当前窗口的最顶层浏览器窗口。它是一个只读属性,它返回对窗口层次结构中最顶层窗口的引用。

用法:

window.top

以下示例程序旨在说明 Window top() 属性:

检查窗口是否是最顶层的浏览器窗口。


<!DOCTYPE>
<html>
  
<head>
    <title>
      Window top() property in HTML
    </title>
    <style>
        h1 {
            color:green;
        }
          
        h2 {
            font-family:Impact;
        }
          
        body {
            text-align:center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
    <h2>Window top() Property</h2>
  
    <p>
      For checking whether the window is the 
      topmost window or not, double click the 
      "Check Top Window" button: 
    </p>
  
    <button ondblclick="Window()">
      Check Top Window
    </button>
  
    <p id="MyWindow"></p>
  
    <script>
        function Window() {
            if (window.top = window.self) {
                document.getElementById("MyWindow").innerHTML =
                    "This window is the topmost window.";
            } else {
                document.getElementById("demo").innerHTML =
                    "This window is not the topmost window.";
            }
        }
    </script>
</body>
  
</html>

输出:



单击按钮后

支持的浏览器: Window top( ) 属性支持的浏览器如下:

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




相关用法


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