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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。