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


HTML Anchor rel用法及代碼示例


HTML DOM中的Anchor rel屬性用於設置或返回鏈接的rel屬性的值。 rel屬性用於指定當前文檔和鏈接文檔之間的關係。

用法:

  • 它返回Anchor rel屬性。
    anchorObject.rel
  • 它用於設置Anchor rel屬性。
    anchorObject.rel = "value"

屬性值:


  • alternate:它定義了文檔的替代版本,即打印頁麵,翻譯版本或鏡像版本。
  • author:它定義了文檔的作者。
  • bookmark:它指定一個相關文檔。
  • help:它指定一個幫助文檔。
  • licence:它定義了文檔的版權信息。
  • next:它定義選擇中的下一個文檔。
  • nofollow:Google使用它來指定Google搜索蜘蛛不應該跟隨該鏈接,並且主要用於付費鏈接。
  • noreferrer:它用於指定如果用戶關注超鏈接,則瀏覽器不應發送HTTP引用標頭。
  • prefetch:它指定應緩存目標文檔。
  • prev:它在選擇中指定上一個文檔。
  • search:它指定文檔的搜索工具。
  • tag:它為當前文檔指定標簽關鍵字。

返回值:它返回一個字符串值,該字符串值表示當前文檔和鏈接文檔之間的關係。

範例1:本示例返回Anchor rel屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Anchor rel Property  
    </title>  
</head>  
      
<body>  
    <center>  
        <h1>GeeksForGeeks</h1>  
          
        <h2>DOM Anchor rel Property</h2>  
          
        <p>Welcome to  
            <a href =  
"https://contribute.geeksforgeeks.org/wp-admin/post.php?post=964437&action=edit"
            id="GFG" rel="nofollow" target= "_self">  
                GeeksforGeeks  
            </a>  
        </p>  
          
        <button onclick = "myGeeks()">Submit</button>  
          
        <p id = "sudo" style="color:green;font-size:25px;"></p>  
          
        <!-- Script to return Anchor rel Property -->
        <script>  
            function myGeeks() {  
                var x = document.getElementById("GFG").rel;  
                document.getElementById("sudo").innerHTML = x;  
            }  
        </script> 
    </center>  
</body>  
  
</html>    

輸出:
在單擊按鈕之前:

單擊按鈕後:

範例2:本示例設置Anchor rel屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Anchor rel Property  
    </title>  
</head>  
      
<body>  
    <center>  
        <h1>GeeksForGeeks</h1>  
          
        <h2>DOM Anchor rel Property</h2>  
          
        <p>Welcome to  
            <a href =  
"https://contribute.geeksforgeeks.org/wp-admin/post.php?post=964437&action=edit"
            id="GFG" rel="nofollow" target= "_self">  
                GeeksforGeeks  
            </a>  
        </p>  
          
        <button onclick = "myGeeks()">Submit</button>  
          
        <p id = "sudo" style="color:green;font-size:25px;"></p>  
          
        <!-- Script to set Anchor rel Property -->
        <script>  
            function myGeeks() {  
                var x = document.getElementById("GFG").rel 
                        = "prefetch";  
                          
                document.getElementById("sudo").innerHTML 
                        = "The value of the rel attribute " 
                        + "was changed to " + x;  
            }  
        </script> 
    </center>  
</body>  
  
</html>    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Anchor rel屬性支持的瀏覽器:

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


相關用法


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