티스토리 뷰
728x90
반응형
팝업 div
<div id="new_pop" style="width:fit-content;height:100%;position:absolute;" >
<img style="" src="/images/popup/pop.jpg"/>
<div style="width:100%;height:20px;position:relative;">
<a href="javascript:void(0);" onclick="exit2()" style="font-weight: bold; position: absolute; right:60px;">하루동안 보지 않기</a>
<input type="checkbox" name="layer_close" style="position:absolute; right:40px;top:3px;"/>
<a href="javascript:void(0);" onclick="exit()" style="font-weight: bold; position: absolute; right: 10px;">X</a>
</div>
</div>
팝업 스크립트
<script>
$(document).ready(function(){
cookiedata = document.cookie;
if(cookiedata.indexOf("close=Y")<0){
$("#new_pop").show();
}else{
$("#new_pop").hide();
}
});
function exit(){
if($("input[name=layer_close]").is(":checked") == true){
setCookie("close","Y",1);
}
$("#new_pop").hide();
}
function exit2(){
$("#new_pop").hide();
setCookie("close","Y",1);
}
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000)); //시간설정
var expires = "expires="+d.toUTCString(); var temp = cname + "=" + cvalue + "; " + expires;
document.cookie = temp;
}
</script>
쿠키를 이용하여 하루동안 보이지 않도록 해보았다.
728x90
반응형
'Java' 카테고리의 다른 글
[SPRING] 서버에서 API 실행시키기 예제 (0) | 2021.11.12 |
---|---|
[SPRING] 스케줄링 예제 (0) | 2021.11.12 |
DB 테이블정보,컬럼정보 조회 쿼리(Tibero) (0) | 2021.08.05 |
Spring Cannot create PoolableConnectionFactory 오류 (0) | 2021.08.05 |
자바에서 파이썬파일(.py) 불러오기, 자바에서 파이썬 사용하기 (6) | 2018.07.15 |
댓글
"이 블로그의 모든 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday