HTMLButtonElement: type プロパティ
Baseline
広く利用可能
この機能は広く実装されており、多くのバージョンの端末やブラウザーで動作します。2015年7月以降、すべてのブラウザーで利用可能です。
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> |
ブラウザーの互換性
関連情報
HTMLTextAreaElement.typeプロパティHTMLInputElement.typeプロパティ