Jquery, delay page location href redirect
2015. 3. 24. 16:20ㆍIT/Jquery Plugin/Tip
웹 페이지 로드 후에 숫자가 카운트 되면서 5초뒤에 다른페이지로 이동하는것~!!!!
<!-- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>~네이버~</title>
<link rel="stylesheet" href="./style.css" type="text/css">
</head>
<script type="text/javascript" src="./js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="./js/common.js"></script>
<script language="javascript" src="./InsertFlash.js"></script>
<body topmargin="0" leftmargin="0" >
<div style="height:150px;"> </div>
<div style="text-align:center;">
<p><h1>홈페이지 주소가 변경이 되었습니다.</h1></p>
<p><h2><div id="timeLeft">5</div></h2></p>
</div>
<script>
$(document).ready(function() {
window.setInterval(function() {
var timeLeft = $("#timeLeft").html();
if(eval(timeLeft) == 0){
}else{
$("#timeLeft").html(eval(timeLeft)- eval(1));
}
}, 1000);
});
</script>
</html>
'IT > Jquery Plugin/Tip' 카테고리의 다른 글
목록 또는 리스트에서 checkbox 모두 체크 checked 하는 소스, checkbox num 값 부여하고... (0) | 2015.03.24 |
---|---|
게시판 목록, 리스트에서 select form 값 설정 및 주기 selected 하기 (0) | 2015.03.24 |
jquery class 및 name 배열(array) 선택자(selector) 선택시 인덱스(index) 추출 (0) | 2015.03.24 |
jquery select box 전체 변경하는 소스 (0) | 2015.03.24 |
image over change (0) | 2015.03.24 |