728x90
SMALL
<!-- button 태그 -->
현재 페이지에서 다른 페이지으로 이동하기
<button onclick="location.href='index.html'">text</button >
새 페이지에서 다른 페이지 열기
<button onclick="window.open('index.html')">text</button >
현재 페이지 새로고침
<button onClick="location.reload();">text</button >
뒤로 가기
<button onClick="history.back();">text</button >
뒤로 1번 가기
<button onClick="history.go(-1);">text</button >
<!-- a 태그 -->
현재 페이지에서 다른 페이지으로 이동하기
<a href="#" onclick="location.href='index.html'">text</a>
새 페이지에서 다른 페이지 열기
<a href="#" onclick="window.open('index.html')">text</a>
현재 페이지 새로고침
<a href="#" onClick="location.reload();">text</a>
뒤로 가기
<a href="#" onClick="history.back();">text</a>
뒤로 1번 가기
<a href="#" onClick="history.go(-1);">text</a>
혹시나 history.back(), history.go(-1) 등 이 작동하지 않으면
return false;를 뒤쪽에 삽입하여 실행해 보세요.
<a href="#" onClick="history.go(-1);return false;">text</a>
728x90
LIST
'Front > Html, css,jsp' 카테고리의 다른 글
[html]form action="" 이고 type이 submit일 때 ajax로 검색하기, form reload 현상 (0) | 2022.05.12 |
---|---|
selectric 초기화 refresh (0) | 2021.11.22 |
jstl 숫자앞에 00붙히기, 숫자 패턴 , 포맷 바꾸기 (0) | 2021.07.09 |
jstl 객체로 불러온 것을 select box선택시 선택되게 하기 (0) | 2021.05.11 |
팝업창 만들기 (0) | 2021.01.04 |
댓글