当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。