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


HTML input formmethod用法及代碼示例


HTML <input> formmethod屬性用於指定將form-data發送到操作URL的HTTP方法。此屬性用於覆蓋<form>元素的method屬性。

用法:

<input formmethod="get | post">

屬性值:



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

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML input formmethod Attribute 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
      GeeksforGeeks 
  </h1> 
  
    <h3>HTML <input>  
      formmethod Attribute</h3> 
  
    <form action="#" 
          id="users"
          action="#" 
          method="GET"
          target="_blank"> 
  
        First name:
        <input type="text"
               name="fname" 
               placeholder="Enter first name"> 
  
        <br> 
        <br> Last name:
        <input type="text"
               name="lname"
               placeholder="Enter last name"> 
        <br> 
        <br> 
  
        <input type="submit" 
               value="Submit" 
               formmethod="post"> 
  
    </form> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML輸入formmethod屬性所支持的瀏覽器:

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



相關用法


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