blob: 136edce10d1286b0829c604b69074080dba3e9c2 (
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
|
---
title: '<noembed>: 埋め込みフォールバック要素(廃止)'
slug: Web/HTML/Element/noembed
tags:
- Element
- Embedded content
- Embedding
- HTML
- Non-standard
- Obsolete
- Reference
- noembed
translation_of: Web/HTML/Element/noembed
---
<div>{{HTMLRef}}{{Non-standard_header}}{{obsolete_header}}</div>
<p><span class="seoSummary"><code><strong><noembed></strong></code> 要素は廃止された、標準外の方法であり、 {{HTMLElement("embed")}} 要素に対応していないブラウザーや、ユーザーが仕様とした種類の<a href="/ja/docs/Web/Guide/HTML/Content_categories#Embedded_content">埋め込みコンテンツ</a>に対応していないブラウザーで代替または「フォールバック」コンテンツを提供するものです。</span>これは HTML 4.01 で非推奨となり、フォールバックコンテンツは {{HTMLElement("object")}} 要素の開始タグと終了タグの間に配置されるようになりました。</p>
<div class="note">
<p>現在のところ、この要素はまだ多くのブラウザーで動作しますが、廃止されており、使用するべきではありません。代わりに {{HTMLElement("object")}} 要素の開始タグと終了タグの間にフォールバックコンテンツを入れて使用して下さい。</p>
</div>
<h2 id="Examples" name="Examples">例</h2>
<p><code><noembed></code> 要素内のメッセージは、ブラウザーが <code><embed></code> 要素に対応していない場合にのみ表示されます。</p>
<h3 id="Show_an_alternative_content" name="Show_an_alternative_content">代替コンテンツの表示</h3>
<pre class="brush: html notranslate"><embed type="vide/webm" src="/media/examples/flower.mp4" width="200" height="200">
<noembed>
<h1>代替コンテンツ</h1>
</noembed>
</embed></pre>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力したいのであれば、 <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
<p>{{Compat("html.elements.noembed")}}</p>
|