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


HTML DOM Location origin屬性用法及代碼示例


Location origin 屬性返回與 URL 的協議、主機名、主機端口號(如果指定)相對應的字符串。

用法

以下是語法 -

的返回值origin屬性

location.origin

示例

讓我們看一個例子Location origin屬性 -

<!DOCTYPE html>
<html>
<head>
<title>Location origin</title>
<style>
   form {
      width:70%;
      margin:0 auto;
      text-align:center;
   }
   * {
      padding:2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius:10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>Location-origin</legend>
<label for="urlSelect">Current URL:</label>
<input type="url" size="30" id="urlSelect" value="https://www.example.com:2544/aboutUs">
<input type="button" onclick="getorigin()" value="Get origin">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var urlSelect = document.getElementById("urlSelect");
   function getorigin(){
      divDisplay.textContent = 'URL Origin:'+location.origin;
   }
</script>
</body>
</html>

輸出

這將產生以下輸出 -

點擊前‘Get origin’按鈕 -

點擊後‘Get origin’按鈕 -

相關用法


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