Computer >> Máy Tính >  >> Lập trình >> HTML

HTML DOM Location hash Thuộc tính

Thuộc tính băm Vị trí trả về / nối một giá trị chuỗi (phần neo) vào một URL. Phần neo được tự động bắt đầu bằng ‘#’ và sau đó được thêm vào.

Cú pháp

Sau đây là cú pháp -

  • Giá trị trả về của hash tài sản
location.hash
  • Giá trị của băm bộ tài sản
location.hash = ‘string’

Ví dụ

Hãy để chúng tôi xem một ví dụ về Băm vị trí tài sản -

<!DOCTYPE html>
<html>
<head>
<title>Location hash</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-hash</legend>
<label for="urlSelect">Current URL:</label>
<input type="url" size="27" id="urlSelect" value="https://www.example.com/">
<input type="text" id="textSelect" placeholder="hash value...">
<input type="button" onclick="setHashValue()" value="Go To URL">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var urlSelect = document.getElementById("urlSelect");
   var textSelect = document.getElementById("textSelect");
   function setHashValue() {
      if(textSelect.value !== ''){
         location.hash = textSelect.value;
         urlSelect.value += location.hash;
         divDisplay.textContent = 'Page loaded. Current URL active';
      } else {
         divDisplay.textContent = 'Please provide a hash value';
      }
   }
</script>
</body>
</html>

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Trước khi nhấp vào ‘Đi tới Url’ nút -

HTML DOM Location hash Thuộc tính

Sau khi nhấp vào ‘Đi tới Url’ nút có giá trị băm được đặt -

HTML DOM Location hash Thuộc tính