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


HTML Window self()用法及代碼示例


Window self() 屬性用於返回當前窗口。它通常用於比較目的,同時使用其他函數,例如 top()。它是一個隻讀屬性,它返回對 Window 對象本身的引用。

用法:

window.self

以下示例程序旨在說明 Window self() 屬性:

使用窗口 self() 屬性與窗口 top() 屬性進行比較。


<!DOCTYPE>
<html>
  
<head>
    <title>
      Window self() property in HTML
    </title>
    <style>
        h1 {
            color:green;
        }
          
        h2 {
            font-family:Impact;
        }
          
        body {
            text-align:center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
    <h2>Window self() 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 self( ) 屬性支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari




相關用法


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