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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。