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


HTML <button> formmethod屬性用法及代碼示例


HTML按鈕的formmethod屬性用於指定提交表單時用於發送數據的HTTP方法。 HTTP方法有兩種,即GET和POST。此屬性僅與Button type =“ submit”一起使用

用法:

<button type="submit" formmethod="get|post">

屬性值:


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

例:本示例說明在Button元素中使用formmethod屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>  
      Button Formmethod attribute 
    </title> 
</head> 
  
<body style="text-align:center"> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <h4> 
      HTML Button Formmethod Attribute 
    </h4> 
    <form action="#" method="post" 
          enctype="multipart/form-data"> 
        First name:
        <input type="text" name="fname"> 
        <br><br> 
        Last name:
        <input type="text" name="lname"> 
        <br><br> 
        Address:
        <input type="text" name="Address"> 
        <br><br> 
        <button type="submit" formmethod="GET"> 
          submit using GET  
        </button> 
        <br> 
        <br> 
        <button type="submit" formenctype="text/plan" 
                formmethod="POST"> 
          submit using POST 
        </button> 
    </form> 
</body> 
  
</html>

輸出:

支持的瀏覽器:HTML <button> Formmethod屬性支持的瀏覽器如下:

  • 穀歌瀏覽器9.0
  • Internet Explorer 10.0
  • Firefox 4.0
  • Opera 10.6
  • Safari 5.1


相關用法


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