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


HTML DOM Window name屬性用法及代碼示例


窗口名稱屬性用於設置或返回窗口的名稱。一般用於修改以前創建的窗口的名稱。它返回一個表示窗口名稱的字符串。
用法:

window.name

返回值:它返回一個表示窗口名稱的字符串值。

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

html


<!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 |窗口名稱 屬性列出如下:

  • 穀歌瀏覽器 1 及以上版本
  • 邊 12 及以上
  • Internet Explorer 4 及更高版本
  • 火狐瀏覽器1及以上版本
  • Opera 12.1 及以上版本
  • Safari 1 及以上版本


相關用法


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