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


HTML Anchor Text用法及代码示例


HTML DOM中的Anchor text属性用于设置或返回链接的文本内容。

用法:

  • 它返回Anchor文本属性。
    anchorObject.text
  • 它用于设置锚文本属性。
    anchorObject.text = sometext

属性值:它包含单个值sometext,该值指定链接字段的文本内容。


返回值:它返回一个表示链接文本内容的字符串值。

范例1:本示例返回锚文本Property。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Anchor text Property  
    </title>  
</head>  
      
<body>  
    <center>  
        <h1>GeeksForGeeks</h1>  
          
        <h2>DOM Anchor text Property</h2>  
          
        <p>Welcome to  
            <a href =  
"https://manaschhabra:manaschhabra499@www.geeksforgeeks.org/" 
            id="GFG">  
                GeeksforGeeks  
            </a>  
        </p>  
          
        <button onclick = "myGeeks()">Submit</button>  
          
        <p id = "sudo" style="color:green;font-size:25px;"></p>  
          
        <!-- Script to return Anchor text Property -->
        <script>  
            function myGeeks() {  
                var x = document.getElementById("GFG").text;  
                document.getElementById("sudo").innerHTML = x;  
            }  
        </script> 
    </center>  
</body>  
  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

范例2:本示例设置锚文本属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Anchor text Property  
    </title>  
</head>  
      
<body>  
    <center>  
        <h1>GeeksForGeeks</h1>  
          
        <h2>DOM Anchor text Property</h2>  
          
        <p>Welcome to  
            <a href =  
"https://manaschhabra:manaschhabra499@www.geeksforgeeks.org/" 
            id="GFG">  
                GeeksforGeeks  
            </a>  
        </p>  
          
        <button onclick = "myGeeks()">Submit</button>  
          
        <p id = "sudo" style="color:green;font-size:25px;"></p>  
          
        <!-- Script to set Anchor text Property -->
        <script>  
            function myGeeks() {  
                var x = document.getElementById("GFG").text 
                        = "GFG";  
                document.getElementById("sudo").innerHTML 
                        = "The text was changed to " + x;  
            }  
        </script> 
    </center>  
</body>  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM Anchor文本属性支持的浏览器:

  • 谷歌浏览器
  • Internet Explorer 10.0以上
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Anchor Text Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。