Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

<noscript>: The Noscript element

BaselineWidely available

The<noscript>HTML element defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.

Attributes

This element only includes theglobal attributes.

Examples

html
<noscript>  <!-- anchor linking to external file -->  <a href="https://www.mozilla.org/">External Link</a></noscript><p>Rocks!</p>

Result with scripting enabled

Rocks!

Result with scripting disabled

Usage notes

The<noscript> element represents its children differently depending on if scripting is enabled:

  • If scripting is disabled the<noscript> element represents its children asHTML content.
  • If scripting is enabled, the<noscript> element represents its children astext.

Technical summary

Content categoriesMetadata content,flow content,phrasing content.
Permitted content When scripting is disabled and when it is a descendant of the<head> element: in any order, zero or more<link> elements, zero or more<style> elements, and zero or more<meta> elements.
When scripting is disabled and when it isn't a descendant of the<head> element: anytransparent content, but no<noscript> element must be among its descendants.
Otherwise: flow content or phrasing content.
Tag omissionNone, both the starting and ending tag are mandatory.
Permitted parents Any element that acceptsphrasing content, if there are no ancestor<noscript> element, or in a<head> element (but only for an HTML document), here again if there are no ancestor<noscript> element.
Implicit ARIA roleNo corresponding role
Permitted ARIA rolesNorole permitted
DOM interfaceHTMLElement

Specifications

Specification
HTML
# the-noscript-element

Browser compatibility

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp