HTMLFormElement: method 属性
基线 广泛可用
此功能已很完善,可在许多设备和浏览器版本上运行。它从 2015 年 7 月.
值
如果没有明确指定,默认方法为 'get'。
示例
字符串。
document.forms["myform"].method = "post";
const formElement = document.createElement("form"); // Create a form
document.body.appendChild(formElement);
console.log(formElement.method); // 'get'
规范
js |
---|
规范 # HTML 标准 |
浏览器兼容性
dom-fs-method