카테고리 없음

[JQUERY]유용하게 써먹는 간단한 제이쿼리[reload]

tokyoGoose 2013. 7. 6. 00:00



JQUERY

1
2
3
4
5
$('#buttonid').click(function() {
 
location.reload();
 
}


HTML


1
<button id="buttonid" value="reload">페이지를 리로드</button>