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


HTML Location port用法及代码示例


HTML DOM位置端口属性返回或设置当前URL的端口号。

用法:

  • 获取端口属性:
location.port
  • 设置端口属性:
location.port = 8080

属性值:


  • 一个字符串,将被分配为端口

返回值:

  • 一个字符串,代表URL的端口号。

例子:

<!DOCTYPE html> 
<html> 
  
<body> 
    <h2>GeeksforGeeks</h2> 
    <p id="demo"></p> 
    
    <p><b>Note:</b>If the port number is default  
      (80 for http and 443 for https), 
      most browsers will display 0 or nothing. 
    </p> 
    
    <script> 
        const url = document.createElement('a'); 
        url.setAttribute('href', 'http://example.com:12345/gfg'); 
  
        <!-- accessing "url.port". -->
        window.alert("The URL port number of the current page is:" 
                     + url.port); 
    </script> 
</body> 
  
</html>

输出:

支持的浏览器:

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


相关用法


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