본문 바로가기
프로그래밍 언어/HTML5 + CSS3

[html] meta 태그로 페이지 이동하기

by 우림 2016. 2. 28.
Head
<meta http-equiv="refresh" content="10;url=http://tistory.com">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
Css
.remainSeconds {color:red}
Javascript
var seconds = 11;

function calSeconds() {
	seconds--;
	$(".remainSeconds").html( seconds );
	setTimeout(calSeconds, 1000);
}

$(function(){
	calSeconds();
});
Body
<p class="remainSeconds"></p>
<p>10초 후에 티스토리로 넘어갑니다.</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
설명
 <meta http-equiv=”refresh” conten=”10;url=http://tistory.com>
 <meta http-equiv=”refresh” conten=”초;url=이동할url>

위 메타 태그를 <head>~</head> 사이에 넣어주시면 됩니다.

 

10초 후에 티스토리로 이동하는 샘플입니다.


댓글