location 객체 속성&메서드
Programming/Javascript |
2012. 12. 30. 23:09
<meta name = "viewport" content = "width=device-width;" charset = "utf-8" />
<script language = "javascript" type="text/javascript">
//[1] href속성 : 지정된 url로 이동
GoGo = function(){
location.href = "http://www.naver.com";
}
//[2] reload()메서드 : 현재 페이지 새로고침
function ReFresh(){
location.reload();
return true; //true를 반환하면, 버튼의 기능을 계속 실행 그렇지 않으면 이벤트 멈춤
}
//[3] 응용 : 3초 후에 지정된 URL로 이동하는 함수
function GoUrl(url){
window.setTimeout("location.href='" +url+"'", 3000);
}
</script>
<input type="button" value = "사이트로 이동" onclick = "GoGo();" />
<input type="button" value = "새로고침" onmouseover = "return ReFresh();" />
<input type = "button" value = "naver" onclick = "GoUrl('http://www.naver.com')" />
'Programming > Javascript' 카테고리의 다른 글
폼 유효성 검사(아이디, 비밀번호) (0) | 2013.01.01 |
---|---|
history 객체 메서드&속성 (0) | 2013.01.01 |
document 객체 속성&메서드 (0) | 2012.12.30 |
window 객체 속성&메서드 (0) | 2012.12.30 |
성적처리 프로그램 (0) | 2012.12.30 |