Skip to content

Commit

Permalink
2024/02/13 時点の英語版に基づき新規翻訳
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Oct 27, 2024
1 parent 0526229 commit c3e8af8
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions files/ja/web/api/htmlbuttonelement/type/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
title: "HTMLButtonElement: type プロパティ"
short-title: type
slug: Web/API/HTMLButtonElement/type
l10n:
sourceCommit: 34d914d848c6d749bb264e6d5c4dda3e94fda4ba
---

{{ApiRef("HTML DOM")}}

**`type`** は {{domxref("HTMLButtonElement")}} インターフェイスのメソッドで、この {{HTMLElement("button")}} 要素の動作の種類を示す文字列です。

これは {{HTMLElement("button")}} 要素の [`type`](/ja/docs/Web/HTML/Element/button#type) 属性を反映しています。

##

種類を表す文字列です。

取りうる値は[ボタンの種類](/ja/docs/Web/API/HTMLButtonElement#htmlbuttonelement.type)の節に一覧があります。

##

### HTML

```html
<button id="button" type="reset">type</button>
```

### JavaScript

```js
const buttonElement = document.querySelector("#buttton");
console.log(buttonElement.type); // "reset"
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- {{domxref("HTMLTextAreaElement.type")}} プロパティ
- {{domxref("HTMLInputElement.type")}} プロパティ

0 comments on commit c3e8af8

Please sign in to comment.