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


HTML Location hostname用法及代码示例


HTML中的“位置”主机名属性用于返回当前URL的主机名。 Location主机名属性返回一个字符串,其中包含域名或URL的IP地址。

用法:

  • 它返回主机名属性。
    location.hostname
  • 它用于设置主机名属性。
    location.hostname = hostname

以下示例程序旨在说明HTML中的Location主机名属性:


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Location hostname Property</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>DOM Location hostname Property</h2> 
    <p> 
      For returning the hostname of the current 
      URL, double click the "Return hostname" button:
    </p> 
    <button ondblclick="myhost()"> 
      Return hostname 
    </button> 
    <p id="hostname"></p> 
    <script>  
        function myhost() { 
            var h = location.hostname; 
            document.getElementById("hostname").innerHTML = h; 
        } 
    </script> 
</body> 
  
</html>

输出:

单击按钮后:

支持的浏览器:以下列出了“位置”主机名属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Location hostname Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。