본문 바로가기

STUDY/HTML

<button>으로 링크 이동 하기

✔ 해결방법

onClick를 사용하면 된다.

<button type="button" onClick="location.href='iloveyou.html'">

 

 

 

✅ <a>와 <button>의 차이

구글에 a button 차이 라고 검색 시 아래와 같이 나온다.

<a>는 '연결' 역할을 한다. href 속성이 없다면 target, download, rel, rev, hreflang, type, referrerpolicy 속성들도 사용할 수 없다. <button>은 인터페이스 조작을 위한 버튼을 정의할 때 사용한다.

출처 : https://humahumahuma.tistory.com/232

 

a, button, input type="submit"는 무슨 차이인가

diff between a, button and input type submit 는 '연결' 역할을 한다. 페이지와 페이지를 연결할 때 사용하는 하이퍼링크를 정의할 때 사용한다. 태그에서 가장 중요한 속성은 href로 link의 목적지를 가리킨

humahumahuma.tistory.com