HTMLFormElement: method 屬性

Baseline 已廣泛支援

此特性已相當成熟,可在許多裝置和瀏覽器版本上使用。自 ⁨2015 年 7 月⁩以來,各瀏覽器均已提供此特性。

HTMLFormElement.method 屬性表示用於提交 <form>HTTP 方法。

除非明確指定,否則預設方法是 'get'。

字串。

示例

js
document.forms["my-form"].method = "post";

const formElement = document.createElement("form"); // Create a form
document.body.appendChild(formElement);
console.log(formElement.method); // 'get'

規範

規範
HTML
# dom-fs-method

瀏覽器相容性