blob: 6b6b0bf55c73908791f951d272b92aff664f8f81 (
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
|
---
title: <noscript>
slug: Web/HTML/Element/noscript
tags:
- Element
- HTML
- HTML scripting
- Reference
- Web
translation_of: Web/HTML/Element/noscript
---
<div>{{HTMLRef}}</div>
<p><strong>HTML の <code><noscript></code> 要素</strong>は、このページ上のスクリプトの種類に対応していない場合や、スクリプトの実行がブラウザーで無効にされている場合に表示する HTML の部分を定義します。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row"><a href="/ja/docs/Web/HTML/Content_categories">コンテンツカテゴリー</a></th>
<td><a href="/ja/docs/Web/HTML/Content_categories#Metadata_content">メタデータコンテンツ</a>、<a href="/ja/docs/Web/HTML/Content_categories#Flow_content">フローコンテンツ</a>、<a href="/ja/docs/Web/HTML/Content_categories#Phrasing_content">記述コンテンツ</a></td>
</tr>
<tr>
<th scope="row">許可されている内容</th>
<td>スクリプトの実行が無効かつ {{HTMLElement("head")}} 要素の子孫である場合: 任意の順序で、0個以上の {{HTMLElement("link")}} 要素、0個以上の{{HTMLElement("style")}} 要素、0個以上の {{HTMLElement("meta")}} 要素。<br>
スクリプトの実行が無効かつ {{HTMLElement("head")}} 要素の子孫ではない場合: 任意の<a href="/ja/docs/Web/Guide/HTML/Content_categories#Transparent_content_model">透過的コンテンツ</a>、ただし <code><noscript></code> 要素を入れ子にしてはならない。<br>
上記以外の場合: フローコンテンツ、記述コンテンツ。</td>
</tr>
<tr>
<th scope="row">タグの省略</th>
<td>{{no_tag_omission}}</td>
</tr>
<tr>
<th scope="row">許可されている親要素</th>
<td>祖先要素に <code><noscript></code> が存在しない場合に、<a href="/ja/docs/Web/HTML/Content_categories#Phrasing_content">記述コンテンツ</a> を受け入れるすべての要素。または、祖先要素に <code><noscript></code> が存在しない場合に、{{HTMLElement("head")}} 要素 (HTML 文書に限る)。</td>
</tr>
<tr>
<th scope="row">暗黙の ARIA ロール</th>
<td><a href="https://www.w3.org/TR/html-aria/#dfn-no-corresponding-role">対応するロールなし</a></td>
</tr>
<tr>
<th scope="row">許可されている ARIA ロール</th>
<td>許可されている <code>role</code> なし</td>
</tr>
<tr>
<th scope="row">DOM インターフェイス</th>
<td>{{domxref("HTMLElement")}}</td>
</tr>
</tbody>
</table>
<h2 id="Attributes" name="Attributes">属性</h2>
<p>この要素には<a href="/ja/docs/Web/HTML/Global_attributes">グローバル属性</a>のみがあります。</p>
<h2 id="Examples" name="Examples">例</h2>
<pre class="brush: html notranslate"><noscript>
<!-- 外部ファイルにリンクするアンカー -->
<a href="https://www.mozilla.com/">外部リンク</a>
</noscript>
<p>ロック!!</p>
</pre>
<h3 id="Result_with_scripting_enabled" name="Result_with_scripting_enabled">スクリプトが有効になっている場合の表示例</h3>
<p>ロック!!</p>
<h3 id="Result_with_scripting_disabled" name="Result_with_scripting_disabled">スクリプトが無効になっている場合の表示例</h3>
<p><a href="https://www.mozilla.com/">外部リンク</a></p>
<p>ロック!!</p>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'scripting.html#the-noscript-element', '<noscript>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'semantics-scripting.html#the-noscript-element', '<noscript>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML4.01', 'interact/scripts.html#h-18.3.1', '<noscript>')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("html.elements.noscript")}}</p>
|