Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 정보처리기사실기
- 자바 삼항연산자
- MySQL
- java
- 이클립스 DB연동
- 항해99 2기
- 타입스크립트
- 자바 if문
- 자바 while문
- 자바 for문
- 자바 공배수
- react ag grid
- 자바 switch문
- 자바 향상된 for문
- 프로그래머스
- Vue3
- 자바 조건문
- react with typescript
- 자바 public
- 자바 자동캐스팅
- Til
- 자바
- 자바 스캐너
- 조코딩
- TypeScript
- 자바 강제 캐스팅
- 항해99
- 자바 구구단 출력
- 자바 반복문
- 변수
Archives
- Today
- Total
뇌 채우기 공간
[html][js] noscript / 자바스크립트 지원되지 않는 환경에서 표시되는 html 본문
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script type="text/javascript" src="./js/main.js" defer></script>
</head>
<body>
안녕하세요!
<noscript>자바 스크립트를 지원하지 않는 환경입니다.</noscript>
</body>
</html>
|
cs |
index.html
body에 noscript로 문구를 적어두었습니다.
실행을 하면 지금은 자바 스크립트를 지원하는 환경이기에 noscript에 들어있는 내용이 출력되지 않습니다.
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<iframe src="./index.html" frameborder="0" style="border: 4px solid red;" sandbox=""></iframe>
</body>
</html>
|
cs |
noscript.html
이 파일에 iframe으로 index.html을 연결해주었습니다.
마지막에 sandbox가 있는데 샌드박스가 있으면 noscript에 적은 내용이 출력되고 , 없으면 출력되지 않습니다.
728x90
'WEB > html,CSS' 카테고리의 다른 글
[html] form 태그 속성/ action method autocomplete novalidate target (0) | 2021.04.08 |
---|---|
[html] table태그 / 표 만들기/ table, td, tr, th/ 셀병합 colspan rowspan/ headers (0) | 2021.04.08 |
[html][js] html<script>/ js파일연결하기/src (0) | 2021.04.08 |
[html][js] html<script>/ js파일연결하기/구문 분석 후 실행 defer (0) | 2021.04.08 |
[html] canvas 태그, 이미지나 애니메이션을 그리기[html] canvas 태그, 이미지나 애니메이션을 그리기 (0) | 2021.04.07 |