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
- ANTI PATTERN
- MVC
- DB
- 현재날짜 구하기
- Stash
- 채용공고
- github
- 자바스크립트
- Git
- Custom URI Schemes
- spring framework
- javascript
- NSIS
- sql
- mave project
- 튜닝
- Java
- Oracle
- 설치프로그램
- mybatis
- framework
- Runtime
- 마켓보로
- 자바에서 응용프로그램 실행
- 쿼리
- CMD
- Runtime.getRuntime.exec()
- spring
- 안티 패턴
- 레지스트리
Archives
- Today
- Total
corn-cheese
[자바스크립트]sweet alert(알림 창),sweet confirm(선택)창 사용하기 본문
반응형
이쁜 Alert창 또는 Confirm창을 쓰고 싶다면 Sweet Alert창을 이용하면 된다
사용하는 방법은 간단하다!
1. Sweet Alert 플러그인 추가해주기
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js"></script>
<link rel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css" />
위에 js와 css를 추가해준다.
2. javascript 코드 작성하기
<script type="text/javascript">
var alert = function(msg, type) {
swal({
title : '',
text : msg,
type : type,
timer : 1500,
customClass : 'sweet-size',
showConfirmButton : false
});
}
var confirm = function(msg, title, resvNum) {
swal({
title : title,
text : msg,
type : "warning",
showCancelButton : true,
confirmButtonClass : "btn-danger",
confirmButtonText : "예",
cancelButtonText : "아니오",
closeOnConfirm : false,
closeOnCancel : true
}, function(isConfirm) {
if (isConfirm) {
swal('', '예약이 승인되었습니다.', "success");
}else{
swal('', '예약이 거부되었습니다.', "failed");
}
});
}
function Alert() {
alert('gg', 'success');
}
function Confirm() {
confirm('', '승인할까요?');
}
</script>
3. HTML 코드 작성하기
<button onclick="Alert();">Alert</button>
<button onclick="Confirm();">Confirm</button>
SweetConfirm 화면
감사합니다!
참고 사이트
반응형
'IT > javascript' 카테고리의 다른 글
[javascript] 자바스크립트 빈값, null, 공백 확인 (0) | 2022.07.06 |
---|---|
[javascript] 자바스크립트 현재 날짜 구하기 (0) | 2022.07.06 |
Comments