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


HTML Area href用法及代碼示例


HTML DOM中的Area href屬性用於設置或返回href屬性的值。用於指定區域的URL。
例如:https://manaschhabra:manaschhabra499@www.geeksforgeeks.org/ (manaschhabra is the username and manaschhabra499 is the password).

用法:

  • 它返回href屬性。
     areaObject.href
  • 它用於設置href屬性。
    areaObject.href = URL

屬性值:它包含指定URL的單個值href。它可以是絕對UR1,相對URL,到元素的鏈接等。


返回值:它返回一個代表URL的字符串值。

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

<!DOCTYPE html>  
<html>  
<title>  
    HTML DOM Area href Property  
</title>  
  
<body>  
    <h4> HTML DOM Area href 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/ 
    </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 value of href attribute.  
            var x = document.getElementById("Geeks").href;  
        document.getElementById("GEEK!").innerHTML = x;  
        }  
    </script>  
</body>  
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:


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

<!DOCTYPE html>  
<html>  
<title>  
    HTML DOM Area href Property  
</title>  
  
<body>  
    <h4> HTML DOM Area href 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/ 
    </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() {  
              
        // Sets href property.  
            var x = document.getElementById("Geeks").href =  
                 https://abc:abc499@www.geeksforgeeks.org/;  
        document.getElementById("GEEK!").innerHTML =  
                "The href has been changed to " + x;  
        }  
    </script>  
</body>  
  
</html>                     

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:

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


相關用法


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