Skip to content

Commit

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

{{ APIRef("HTML DOM") }}

**`value`** は {{DOMxRef("HTMLButtonElement")}} インターフェイスのプロパティで、この {{htmlelement("button")}} 要素の現在の値を文字列で表します。値が設定されていない場合は空文字列になります。これはこの要素の [`value`](/ja/docs/Web/HTML/Element/button#value) 属性を反映します。

##

この {{htmlelement("button")}} 要素の値を含む文字列です。

##

```js
const buttonElement = document.getElementById("given-name");
console.log(`value: ${buttonElement.value}`);
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- {{HTMLElement("button")}}
- {{DOMXref("HTMLButtonElement.type")}}
- {{DOMXref("HTMLButtonElement.labels")}}

0 comments on commit 4741a5c

Please sign in to comment.