Skip to content

Commit

Permalink
2024/07/15 時点の英語版に基づき新規翻訳
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Oct 18, 2024
1 parent cfabb13 commit 7ab5a01
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions files/ja/web/api/htmlanchorelement/text/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
title: "HTMLAnchorElement: text プロパティ"
short-title: text
slug: Web/API/HTMLAnchorElement/text
l10n:
sourceCommit: 5d670c42df8ede57e3d6341cb15d8251eb188dc4
---

{{ApiRef("HTML DOM")}}

**`text`** は {{domxref("HTMLAnchorElement")}} のプロパティで、要素内のテキストを表します。
このプロパティは {{domxref("Node.textContent")}} と同じ情報を表します。

##

文字列です。

##

```html
<a id="exampleLink" href="https://example.com">Example Link</a>
<p class="text"></p>
```

```css
#exampleLink {
font-size: 1.5rem;
}
```

```js
const anchorElement = document.getElementById("exampleLink");
const pTag = document.querySelector(".text");
pTag.textContent = `Text property: ${anchorElement.text}`;
```

### 結果

{{EmbedLiveSample("Example",100,100)}}

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- {{domxref("HTMLScriptElement.text")}} プロパティ
- {{domxref("HTMLOptionElement.text")}} プロパティ

0 comments on commit 7ab5a01

Please sign in to comment.