input type 정리

니나노개발생활·2021년 5월 17일
0

💡ah-ha

목록 보기
16/51
post-thumbnail

input type = image(이미지 버튼), button(버튼), file (파일 첨부)

image

<input type = "image" src = "search.png" alt = "전송 이미지" >
  • image가 submit 버튼을 대신하여 눌렀을 때 서버 프로그램으로 전송하는 것과 같은 역할을 한다.

button

<input type = "button">
  • 버튼 자체에는 아무런 기능이 없어 id 설정 후 이벤트를 줘야한다.

file

<input type = "file" >
  • 파일을 첨부하게 한다.
profile
깃헙으로 이사중..

0개의 댓글