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 |
Tags
- 톰캣
- RADIO
- jquery
- exception
- html
- HTML5
- @RequestBody
- maven
- 스크립트
- SSL
- spring form tag
- 오라클
- 날짜
- 호환성
- json
- Oracle
- 전자정부 표준프레임워크
- 이클립스
- switch
- 웹 플랫폼 설치 관리자
- java
- MYSQL
- null
- checbox
- php
- 한글
- DB
- 문자열
- JSTL
- 네이버스마트 에디터
Archives
- Today
- Total
개인적인 정리
javascript에서 switch 본문
switch 예제
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
|
var sns ="";
switch(sns){
case 'google':
console.log("google");
break;
case 'facebook':
console.log("facebook");
break;
case 'twitter':
console.log("twitter");
break;
case 'band':
console.log("band");
break;
case 'line':
console.log("line");
break;
case 'blog':
console.log("blog");
break;
case 'kakaoStory':
console.log("kakaostory");
break;
case 'kakaoTalk':
console.log("kakaotalk");
break;
default :
break;
}
|
cs |
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
|
var level =0;
switch(level){
case 0:
console.log("0");
break;
case 1:
console.log("1");
break;
case 2:
console.log("2");
break;
case 3:
console.log("3");
break;
case '4':
console.log("4");
break;
case '5':
console.log("5");
break;
case '6':
console.log("6");
break;
case '7':
console.log("7");
break;
default :
break;
}
|
cs |
'Script & jQuery' 카테고리의 다른 글
[javascript] 파일 확장자 및 파일 이름 체크 (0) | 2021.01.27 |
---|---|
Uncaught TypeError: pattern.test is not a function (0) | 2020.09.08 |
jquery datetimepicker 주말 비활성화 (0) | 2019.07.19 |
Uncaught SyntaxError: Unexpected token o in JSON at position 1 (0) | 2019.06.03 |
jquery datetimepicker 한글 (1) | 2019.05.06 |
숫자만 입력(다른 문자 replace) (0) | 2019.04.27 |
문자열 내 공백제거(javascript) (0) | 2019.04.03 |
크롬에서 bxSlider a 태그 링크이동 오류 (5) | 2019.03.27 |
Comments