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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。