diff options
Diffstat (limited to 'files/ja/web/html/element/noscript')
-rw-r--r-- | files/ja/web/html/element/noscript/index.html | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/files/ja/web/html/element/noscript/index.html b/files/ja/web/html/element/noscript/index.html new file mode 100644 index 0000000000..445863204c --- /dev/null +++ b/files/ja/web/html/element/noscript/index.html @@ -0,0 +1,107 @@ +--- +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> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("html.elements.noscript")}}</p> |