현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
개요
HTML <noscript>
요소는 페이지에 있는 스크립트 타입이 지원되지 않거나, 브라우저에서 스크립팅이 꺼져있는 경우에 삽입될 html 구획을 정의합니다.
- 컨텐츠 범주 메타데이터 컨텐츠, 플로우 컨텐츠, 구문 컨텐츠.
- 허용된 컨텐츠 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: any transparent content, but no<noscript>
element must be among its descendants.
Otherwise: flow content or phrasing content. - 태그 생략 None, both the starting and ending tag are mandatory.
- 허용된 부모 요소 구문 컨텐츠를 허용하는 모든 요소
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. - DOM 인터페이스
HTMLElement
속성
이 요소는 전역 속성만을 포함합니다.
예제
<noscript> <!-- anchor linking to external file --> <a href="https://www.mozilla.com/">External Link</a> </noscript> <p>Rocks!</p>
스크립팅 활성화 상태에서의 결과
Rocks!
스크립팅 비활성화 상태에서의 결과
Rocks!
사양
사양 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<noscript>' in that specification. |
Living Standard | |
HTML5 The definition of '<noscript>' in that specification. |
Recommendation | |
HTML 4.01 Specification The definition of '<noscript>' in that specification. |
Recommendation |
브라우저 호환성
기능 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
기능 | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |