blob: aeda1188b4318864df2dfed39be0bf713d5813fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
---
title: '<content>: シャドウ DOM のコンテンツのプレイスホルダー要素'
slug: Web/HTML/Element/content
tags:
- Deprecated
- Element
- HTML
- NeedsContent
- Reference
- Web
- Web Components
translation_of: Web/HTML/Element/content
---
<div>{{Deprecated_header}}</div>
<p><span class="seoSummary"><strong>HTML の <code><content></code> 要素</strong>は、一連の<a href="/ja/docs/Web/Web_Components">ウェブコンポーネント</a>技術の廃止された部分であり、 <a href="/ja/docs/Web/Web_Components/Shadow_DOM">Shadow DOM</a> の中で {{glossary("insertion point")}} として使われていましたが、通常の HTML で利用することは意図されていませんでした。</span>現在では DOM の中で Shadow DOM を挿入することができる場所を作成する {{HTMLElement("slot")}} 要素に置き換えられました。</p>
<div class="note">
<p><strong>メモ:</strong> この要素は初期のドラフト仕様に存在し、いくつかのブラウザーで実装されていましたが、後のバージョンの仕様書から削除され、使用するべきではありません。ここで文書化しているのは、その間に書かれたコードを、新しいバージョンの仕様書で動作するように適合させるのを支援するためです。</p>
</div>
<table class="properties">
<tbody>
<tr>
<th scope="row"><a href="/ja/docs/Web/HTML/Content_categories" title="HTML/Content_categories">コンテンツカテゴリー</a></th>
<td><a href="/ja/docs/Web/HTML/Content_categories#Transparent_content_model" title="HTML/Content_categories#Transparent_content_model">透過的コンテンツ</a></td>
</tr>
<tr>
<th scope="row">許可されている内容</th>
<td><a href="/ja/docs/Web/HTML/Content_categories#Flow_content">フローコンテンツ</a></td>
</tr>
<tr>
<th scope="row">タグの省略</th>
<td>{{no_tag_omission}}</td>
</tr>
<tr>
<th scope="row">許可されている親要素</th>
<td>フローコンテンツを受け入れるすべての要素。</td>
</tr>
<tr>
<th scope="row">DOM インターフェイス</th>
<td>{{domxref("HTMLContentElement")}}</td>
</tr>
</tbody>
</table>
<h2 id="Attributes" name="Attributes">属性</h2>
<p>この要素は<a href="/ja/docs/HTML/Global_attributes" title="HTML/Global attributes">グローバル属性</a>を持ちます。</p>
<dl>
<dt><code>select</code></dt>
<dd>コンマ区切りで複数のセレクターを指定できます。これらは CSS セレクターと同じ文法です。 <code><content></code> 要素が指定された場所に挿入する内容を指定します。</dd>
</dl>
<h2 id="Example" name="Example">例</h2>
<p>以下に <code><content></code> 要素の使用例を示します。これは必要なものがすべて含まれている HTML ファイルです。</p>
<div class="note">
<p><strong>メモ:</strong> 以下のコードを動作させるには、ブラウザーが Web Components をサポートしている必要があります。 <a href="/ja/docs/Web/Web_Components#Enabling_Web_Components_in_Firefox">Firefox で Web Components を有効にするには</a>の記事も参照してください。</p>
</div>
<pre class="brush: html"><html>
<head></head>
<body>
<!-- The original content accessed by <content> -->
<div>
<h4>My Content Heading</h4>
<p>My content text</p>
</div>
<script>
// Get the <div> above.
var myContent = document.querySelector('div');
// Create a shadow DOM on the <div>
var shadowroot = myContent.createShadowRoot();
// Insert into the shadow DOM a new heading and
// part of the original content: the <p> tag.
shadowroot.innerHTML =
'<h2>Inserted Heading</h2> <content select="p"></content>';
</script>
</body>
</html>
</pre>
<p>ブラウザーで表示した場合、以下のように表示されます。</p>
<p><img alt="content example" src="https://mdn.mozillademos.org/files/10077/content-example.png" style="height: 383px; width: 716px;"></p>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<p>この要素は現在、どの仕様書でも定義されていません。</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
<p>{{Compat("html.elements.content")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li><a href="/ja/docs/Web/Web_Components">Web Components</a></li>
<li>{{HTMLElement("shadow")}}, {{HTMLElement("slot")}}, {{HTMLElement("template")}}, {{HTMLElement("element")}}</li>
</ul>
<div>{{HTMLRef}}</div>
|