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
- nextFocusDown
- junit
- Android Flavor
- Location Permission
- Github 등록
- Chat GPT
- TextView 일부분
- 안드로이드 자동으로 포커싱
- Github Token
- PHP Storm
- 5회 인증
- InvalidTestClassError
- sourceSet
- codeigniter
- Execution failed for task ':test'.
- 여러 개
- docker에서 mysql 실행
- AWS
- Linux 패키지 관리자
- Android Studio
- php
- git
- git cannot identify version of git executable
- 챗GPT
- 다음으로 이동
- XML Opacity
- 챗지피티
- mac 패키지 관리자
Archives
- Today
- Total
128june
[Javascript] 5회 인증 검토 기능 본문
반응형
/* 5회 인증 검토 */
// 쿠키 가져오기
let tmpCarCheck = getCookie("tmpCarCheck");
// 5회 이상 인증 시
if(tmpCarCheck >= 5){
// 현재 시간 설정
let nowDate = new Date();
// time 쿠키 가져오기
let tmpCarCheckTime = getCookie("tmpCarCheckTime");
// time 쿠키 가 없으면 time 쿠키 설정
if(!tmpCarCheckTime){
// time 쿠키 날짜 설정
let expirationDate = new Date();
// time 쿠키 30분 제한 설정
expirationDate.setMinutes(expirationDate.getMinutes() + 30);
// 쿠키에 등록
document.cookie = "tmpCarCheckTime=" + expirationDate.getTime();
// tmpCarCheckTime exp Time 으로 재설정
tmpCarCheckTime = expirationDate.getTime();
}
// time 쿠키와 현재시간 비교 (0보다 크면 5회 인증으로 return
if(tmpCarCheckTime - nowDate.getTime() > 0){
alert(
"5회 인증 실패로 인증이 불가합니다.\n잠시 후 다시 시도해주세요.\n\n다음 인증까지\n"
+ (Math.floor((diff / (1000 * 60 * 60)) % 24).toString().padStart(2, '0') + ":" +
Math.floor((diff / (1000 * 60)) % 60).toString().padStart(2, '0') + ":" +
Math.floor((diff / 1000) % 60).toString().padStart(2, '0'))
);
return;
}
tmpCarCheck = 0;
document.cookie = "tmpCarCheck=" + tmpCarCheck;
document.cookie = "tmpCarCheckTime=";
}
console.log('이후 실행');
// 쿠키명 : tmpCarCheck
let nowCnt = !tmpCarCheck?0:parseInt(tmpCarCheck);
document.cookie = "tmpCarCheck=" + (nowCnt+1);
/* 5회 인증 검토 */
반응형
'HTML & JavaScript' 카테고리의 다른 글
[JavaScript] jQuery 사용하기 ( jQuery 링크 ) (0) | 2020.07.04 |
---|---|
[JavaScript] .append() 함수 (0) | 2020.06.26 |
[JavaScript] .html() 함수 (0) | 2020.06.26 |
Comments