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


HTML Anchor type用法及代码示例


HTML DOM中的Anchor类型属性用于设置或返回链接的type属性的值。 type属性用于指定目标URL的MIME类型,通常纯粹是建议性的。

用法:

  • 它返回锚点类型属性。
    anchorObject.type 
  • 用于设置锚点类型属性。
    anchorObject.type = MIME-type 

属性值:它包含单个值MIME-type,用于指定目标URL。


返回值:它返回一个表示链接文档的MIME类型的字符串值。

范例1:本示例返回锚点类型Property。

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

输出:
在单击按钮之前:

单击按钮后:

范例2:本示例设置锚点类型Property。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Anchor type Property  
    </title>  
</head>  
      
<body>  
    <center>  
        <h1>GeeksForGeeks</h1>  
          
        <h2>DOM Anchor type 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 type Property -->
        <script>  
            function myGeeks() {  
                var x = document.getElementById("GFG").type 
                        = "text/html";  
                          
                document.getElementById("sudo").innerHTML 
                        = "The value of the type attribute of" 
                        + " above linke is " + x;  
            }  
        </script> 
    </center>  
</body>  
  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

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

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


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