인라인 자바스크립트 활용하기(onclick 이벤트)

Jiwontwopunch·2022년 5월 23일
0

독학

목록 보기
66/102
post-thumbnail
<!-- 현재 탭에서 열기 -->
<section class="welcome" onclick="location.href='iphonex.html'">
  <div class="heading">
    <h3>iPhone X</h3>
    <a href="iphone.html">Encounter with the future</a>
  </div>
</section>

<!-- 새탭으로 열기 -->

<a href="javascript:history.back()">뒤로이동</a>
<a href="javascript:history.forward()">앞으로이동</a>
<button onclick=javascript:history.back()">뒤로이동</button>
<a href="javascript:location.reload()">새로고침</a>
<a href="javascript:window.close()">창닫기</a>

0개의 댓글