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


HTML method屬性用法及代碼示例


HTML | method屬性用於指定提交表單時用於發送數據的HTTP方法。 HTTP方法有兩種,即GET和POST。 method屬性可以與<form>元素一起使用。

屬性值:

  • GET:在GET方法中,提交表單後,表單值將在新瀏覽器選項卡的地址欄中可見。它的大小限製為大約3000個字符。它僅對非安全數據有用,而不對敏感信息有用。
  • POST:在post方法中,提交表單後,表單值將不會在新瀏覽器選項卡的地址欄中顯示,因為它在GET方法中可見。它將表單數據附加到HTTP請求的正文中。沒有大小限製。此方法不支持將結果添加為書簽。

用法:

<form method="get|post">

例:本示例說明了方法屬性的使用。

<!DOCTYPE html> 
<html> 
  
<body style="text-align:center;"> 
    <h1 style="color:green;">  
    GeeksForGeeks  
</h1> 
  
    <h2>DOM Form method Property.</h2> 
    <form id="users"
          action="#"
          method="GET" 
          target="_blank"> 
        First name:
  
        <input type="text" 
               name="fname"
               value="Manas"> 
  
        <br> Last name:
        <input type="text"
               name="lname"
               value="Chhabra"> 
  
        <br> 
        <input type="submit"
               value="Submit"> 
    </form> 
  
    <p> 
      After submitting the form,  
      input values are shown in the address  
      bar of the window. 
  </p> 
  
    <button onclick="myGeeks()"> 
      Try it 
  </button> 
  
    <p id="sudo" 
       style="font-size:25px; 
              color:green;"> 
    </p> 
  
    <script> 
        function myGeeks() { 
  
            // Set property of method.  
            var x = 
                document.getElementById("users").method = 
                "POST"; 
            
            document.getElementById("sudo").innerHTML = 
                "The value of the method "+ 
                 "attribute was changed to " + x; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML方法屬性支持的瀏覽器:

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




相關用法


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