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


HTML Area hash用法及代碼示例


HTML DOM中的DOM Area哈希屬性用於設置或返回href屬性值的錨點部分。錨點部分是URL中井號(#)之後的部分。

用法:

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

屬性值:它包含單個值anchorname,用於指定URL的錨點部分。


返回值:它返回一個字符串值,該值表示URL的錨點部分,包括井號(#)。

範例1:本示例返回Area哈希屬性。

<!DOCTYPE html>  
<html>  
<title>  
    HTML DOM Area hash Property  
</title>  
  
<body>  
    <h4> HTML DOM Area hash Property </h4>  
    <button onclick="GFG()">Click Here!  
    </button>  
    <map name="Geeks1">  
        <area id="Geeks"
            shape="rect"
            coords="0, 0, 110, 100"
            alt="Geeks"
            href=  
        https://manaschhabra:manaschhabra499@www.geeksforgeeks.org#abc/ 
                        target="_self"
    </map>  
  
    <img src=  
"https://media.geeksforgeeks.org/wp-content/uploads/a1-25.png"
        width="300"
        height="100"
        alt="Geeksforgeeks"
        usemap="#Geeks1">  
    </br> 
    <p id="GEEK!"></p>  
      
    <script>  
        function GFG() {  
              
        // Return hash property.  
            var x = document.getElementById("Geeks").hash;  
        document.getElementById("GEEK!").innerHTML = x;  
        }  
    </script>  
</body>  
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:


範例2:
本示例設置Area哈希屬性。

<!DOCTYPE html>  
<html>  
<title>  
    HTML DOM Area hash Property  
</title>  
  
<body>  
    <h4> HTML DOM Area hash Property </h4>  
    <button onclick="GFG()">Click Here!  
    </button>  
    <map name="Geeks1">  
        <area id="Geeks"
            shape="rect"
            coords="0, 0, 110, 100"
            alt="Geeks"
            href=  
        https://manaschhabra:manaschhabra499@www.geeksforgeeks.org#abc/ 
                       target="_self"
    </map>  
  
    <img src=  
"https://media.geeksforgeeks.org/wp-content/uploads/a1-25.png"
        width="300"
        height="100"
        alt="Geeksforgeeks"
        usemap="#Geeks1">  
    </br> 
    <p id="GEEK!"></p>  
      
    <script>  
        function GFG() {  
              
        // Set hash property.  
            var x = document.getElementById("Geeks").hash = "xyz";  
        document.getElementById("GEEK!").innerHTML =  
                "The hash value has been changed to " + x;  
        }  
    </script>  
</body>  
  
</html>                     

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:

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


相關用法


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