'onclick'에 해당되는 글 1건

  1. 2011.11.26 [jsp에서 onClick 이벤트 정리]

<input type="button" onclick="javascript:history.back()" value="뒤로">


<input type="button" onclick="javascript:history.forward()" value="앞으로">


<input type="button" onclick="javascript:history.go(-3)" value="3단계 뒤로">


<input type="button" onclick="javascript:history.go(0)" value="현제 페이지">


<input type="button" onclick="javascript:history.go(3)" value="3단계 앞으로">


window.location.reload(); 또는,

<a href="javascript:location.reload()">새로고침</a>

Posted by cyj4369
,