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


HTML Location hash用法及代碼示例


HTML中的Location Hash屬性用於返回URL的錨點部分。它也可以用來設置URL的錨點部分。它返回代表URL錨點部分的字符串,包括井號“#”。

用法:

  • 它返回hash屬性。
    location.hash
  • 它用於設置哈希屬性。
    location.hash = anchorname

以下示例程序旨在說明HTML中的Location哈希屬性:


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Location hash property</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>DOM Location hash Property</h2> 
    <p> 
      For setting the anchor part to  
      'newlocationhash', double click  
      the "Set Anchor" button:
    </p> 
    <button ondblclick="mylocation()"> 
      Set Anchor 
    </button> 
    <p id="hash"></p> 
    <script> 
        function mylocation() { 
            location.hash = "newlocationhash"; 
            var h =  
                "The anchor part is now:" + location.hash; 
            document.getElementById("hash").innerHTML = h; 
        } 
    </script> 
</body> 
  
</html>   

輸出:

單擊按鈕後:

支持的瀏覽器:以下列出了Location哈希屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


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