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
相關用法
- HTML input formmethod用法及代碼示例
- HTML Button formMethod用法及代碼示例
- HTML Input Submit formMethod用法及代碼示例
- HTML Input Image formMethod用法及代碼示例
- HTML for屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML <a> rel屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML name屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
- HTML <bdo> dir屬性用法及代碼示例
- HTML <map> name屬性用法及代碼示例
- HTML src屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <button> formmethod Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。