HTMLButtonElement:type 属性
type
属性是 HTMLButtonElement
接口的字符串,指示 <button>
元素的行为类型。
值
表示类型的字符串。
其可能的值列在属性的 按钮类型 部分中。
示例
HTML
html
<button id="button" type="reset">type</button>
JavaScript
js
const buttonElement = document.querySelector("#buttton");
console.log(buttonElement.type); // "reset"
规范
规范 |
---|
HTML 标准 # dom-button-type |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。