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


HTML Window name用法及代碼示例


窗口名稱屬性用於設置或返回窗口名稱。通常用於修改過去創建的窗口的名稱。它返回一個代表窗口名稱的字符串。

用法:

window.name

以下示例程序旨在說明窗口名稱屬性:


返回窗口的名稱。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Window name Property in HTML 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Window name Property</h2> 
  
    <p> 
      For returning the name of the window, 
      double click the "Check Name" button:
    </p> 
  
    <button ondblclick="fname()">Check Name</button> 
  
    <!--window.open() defines the name of the window -->
    <!-- w.name property print the name of that window -->
    <script> 
        function fname() { 
            var w = window.open("","My Window", 
                       "width=400, height=400"); 
            w.document.write("The name of the window is:" 
                                      + w.name); 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

單擊按鈕後

支持的瀏覽器:HTML |窗口名稱屬性在下麵列出:

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


相關用法


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