본문으로 바로가기

<button></button> 이것과 <button type="submit"></button> 이것은 같음

타입 명시가 없다면 기본적으로 'submit' 처리

 

submit을 허용하지 않기 위해 type 지정이 필요함

<button type="button"></button>

 

 

button 태그를 사용하는 이유는 <input type="button">의 경우 자식요소를 가질수 없기 때문에

아래 처럼 사용하기 위함(아이콘도 넣을 수 있고..)서 

<button>
   <img src="images/button.png" alt/>
   <span>예쁜 버튼</span>
</button>