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


HTML Anchor protocol用法及代碼示例


HTML DOM中的Anchor協議屬性用於設置或返回href屬性值的協議部分的值。該協議用於指定如何在兩台計算機之間傳輸數據。

用法:

  • 它返回Anchor協議屬性。
    anchorObject.protocol
  • 它用於設置Anchor協議屬性。
    anchorObject.protocol = protocol

屬性值:它包含單值協議,該協議指定如何在兩台計算機之間傳輸數據。例如:文件,ftp,http,https,mailto等。


返回值:它返回一個表示URL協議部分的字符串值,還包括冒號(:)。

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

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Anchor protocol Property  
    </title>  
</head>  
      
<body>  
    <center>  
        <h1>GeeksForGeeks</h1>  
          
        <h2>DOM Anchor protocol 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 protocol Property -->
        <script>  
            function myGeeks() {  
                var x = document.getElementById("GFG").protocol;  
                document.getElementById("sudo").innerHTML = x;  
            }  
        </script> 
    </center>  
</body>  
  
</html>                    

輸出:
在點擊Buttton之前:

單擊按鈕後:

範例2:本示例設置“錨定協議”屬性。

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

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:以下列出了“錨定協議”屬性支持的瀏覽器:

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


相關用法


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