-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,35 @@ | ||
--- | ||
title: HTMLQuoteElement | ||
slug: Web/API/HTMLQuoteElement | ||
l10n: | ||
sourceCommit: 7e6e5f5d4c1c984af3d4ebf9399042d19eccea1e | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
**`HTMLQuoteElement`** インターフェースは,引用要素を扱う為に(継承する{{domxref("HTMLElement")}}インターフェースを越えた)固有の属性を提供します。ここで引用要素とは{{HTMLElement("blockquote")}}や{{HTMLElement("q")}}といった要素であり,{{HTMLElement("cite")}}要素ではありません。 | ||
**`HTMLQuoteElement`** インターフェイスは、(通常の {{domxref("HTMLElement")}} インターフェイスから継承されるもの以外に)引用要素を操作するための特別なプロパティやメソッドを提供します。例えば {{HTMLElement("blockquote")}} や {{HTMLElement("q")}} ですが、{{HTMLElement("cite")}} 要素は含みません。 | ||
|
||
{{InheritanceDiagram(600, 120)}} | ||
{{InheritanceDiagram}} | ||
|
||
## 属性 | ||
## インスタンスプロパティ | ||
|
||
_親である{{domxref("HTMLElement")}}からメソッドを継承します。_ | ||
_親である {{domxref("HTMLElement")}} から継承したプロパティがあります。_ | ||
|
||
- {{domxref("HTMLQuoteElement.cite")}} | ||
- : は{{domxref("DOMString")}}であり,HTML 属性[`cite`](/ja/docs/Web/HTML/Element/blockquote#cite)に格納している引用元 URL を表します。 | ||
- : 文字列で、HTML の [`cite`](/ja/docs/Web/HTML/Element/blockquote#cite) 属性を反映し、引用元の URL を表します。 | ||
|
||
## メソッド | ||
## インスタンスメソッド | ||
|
||
_固有のメソッドなし。親である{{domxref("HTMLElement")}}からメソッドを継承します。_ | ||
_固有のメソッドはありません。親である {{domxref("HTMLElement")}} から継承したメソッドがあります。_ | ||
|
||
## 仕様書 | ||
|
||
{{Specifications}} | ||
|
||
## ブラウザーの互換性 | ||
|
||
{{Compat("api.HTMLQuoteElement")}} | ||
{{Compat}} | ||
|
||
## 関連情報 | ||
|
||
- 本インターフェースを実装する HTML 要素: {{HTMLElement("blockquote")}}及び{{HTMLElement("q")}},然し{{HTMLElement("cite")}}ではない。 | ||
- このインターフェイスを実装している HTML 要素: {{HTMLElement("blockquote")}} および {{HTMLElement("q")}}、ただし {{HTMLElement("cite")}} は含みません |