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


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


HTML DOM Location href 屬性返回/設置與 URL 路徑對應的字符串。

用法

以下是語法 -

  • 的返回值href屬性
location.href
  • 價值href屬性集
location.href = href

示例

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

<!DOCTYPE html>
<html>
<head>
<title>Location href</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-href</legend>
<label for="urlSelect">Current URL:</label>
<input type="url" size="30" id="urlSelect" value="https://www.example.com/aboutUs">
<input type="button" onclick="gethref()" value="Get href">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var urlSelect = document.getElementById("urlSelect");
   function gethref(){
      divDisplay.textContent = 'URL Path:'+location.href;
   }
</script>
</body>
</html>

輸出

這將產生以下輸出 -

點擊前‘Get href’按鈕 -

點擊後‘Get href’按鈕 -

相關用法


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