本文介紹HTML button formmethod 屬性的使用方法,在線實(shí)例演示如何使用HTML button formmethod 屬性、瀏覽器的兼容性、語法定義及它的屬性值詳細(xì)資料等。
具有兩個(gè)提交按鈕的表單。第一個(gè)提交按鈕使用method ="get"提交表單數(shù)據(jù),第二個(gè)提交按鈕使用method =" post"提交表單數(shù)據(jù):
<!DOCTYPE html> <html> <head> <title>HTML:<button> formmethod 屬性 - 菜鳥教程 (cainiaoplus.com)</title> <body> <form action="action_page.php" method="get"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <button type="submit">默認(rèn)get方式提交</button> <button type="submit" formmethod="post">post方式提交</button> </form> </body> </html>測(cè)試看看 ?/?
IEFirefoxOperaChromeSafari
Internet Explorer 10, Firefox, Opera, Chrome, 和 Safari 支持 formmethod 屬性。
注意:Internet Explorer 9 及更早IE版本不支持 formmethod 屬性。
formmethod屬性指定發(fā)送表單數(shù)據(jù)時(shí)要使用的HTTP方法。此屬性覆蓋表單的 method 屬性。
formmethod屬性僅用于類型為“ submit”的按鈕。
表單數(shù)據(jù)可以作為URL變量(使用method =“ get”)或作為HTTP post(使用method =“ post”)發(fā)送。
關(guān)于“GET”方法的注意事項(xiàng):
它將表單數(shù)據(jù)以 名稱/值 對(duì)的形式附加到URL
對(duì)于用戶希望將結(jié)果添加為書簽的表單提交非常有用
您可以在URL中放置多少數(shù)據(jù)是有限制的(瀏覽器之間會(huì)有所不同),因此,您不能確定所有表單數(shù)據(jù)都會(huì)正確傳輸
切勿使用“get”方法來傳遞敏感信息?。艽a或其他敏感信息將在瀏覽器的地址欄中顯示)
關(guān)于“ post”方法的注釋:
它將表單數(shù)據(jù)作為HTTP后事務(wù)發(fā)送
帶有“ post”方法的表單提交不能添加為書簽
它比“獲取”更健壯和安全
它沒有大小限制
formmethod 屬性是 HTML 5 中的新屬性。
<button type="submit" formmethod="get|post">
值 | 描述 |
---|---|
get | 向 URL 追加表單數(shù)據(jù)(form-data):URL?name=value&name=value |
post | 以 HTTP post 事務(wù)的形式發(fā)送表單數(shù)據(jù)(form-data) |