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


HTML Location origin用法及代碼示例


HTML中的DOM位置來源屬性用於返回URL的協議,主機名和端口號。這是一個隻讀屬性。

用法:

location.origin

返回值:此方法返回一個String值,表示協議,域名(或IP地址)和端口號。具有“ file://”協議的網址可能會根據瀏覽器返回不同的值。


注意:某些瀏覽器可能不顯示端口號。

以下示例說明了上述方法:

例:

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title>DOM Location Origin Property</title> 
</head> 
  
<body> 
    <h1 style="color:green">GeeksforGeeks</h1> 
    <b>DOM Location Origin Property</b> 
    <p> 
      Click on the button to get the location 
      origin of the page:
    </p> 
  
    <button onclick="getOrigin();"> 
        Get Location Origin 
    </button> 
  
    <p>The location origin of this page is:</p> 
  
    <div class="location"></div> 
  
    <script> 
        function getOrigin() { 
            let loc = location.origin; 
            document.querySelector('.location') 
                .innerHTML = loc; 
        } 
    </script> 
</body> 
  
</html>

輸出:

  • 在單擊按鈕之前:

  • 單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Location origin屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • Internet Explorer 11.0
  • Firefox
  • Opera 15.0
  • Safari


相關用法


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