• 회원가입
  • 로그인
  • 구글아이디로 로그인

[form] HTML - <input type="image"> 태그 - 이미지로 된 submit 버튼 (= 인풋이미지타입/이미지타입인풋/이미지인풋 요소) ※ 이미지서브미트/이미지서브밋

목차
  1. <input type="image"> 예제 - 이미지로 된 submit 버튼
  2. <input type="image"> 정의
  3. <input type="image"> 구문
  4. <input type="image"> 예제 - 이미지 INPUT 우측 정렬

 

<input type="image"> 예제 - 이미지로 된 submit 버튼

 

<form action="/action_page.php">

  <label for="name">이름: </label>

  <input type="text" id="name" name="name"><br><br>

  <label for="nick">별명: </label>

  <input type="text" id="nick" name="nick"><br><br>

  <input type="image" src="submit.gif" alt="확인" width="50" height="40">

</form>

 

결과보기 (※ 전송키값쌍:  name=홈짱&nick=닷컴&x=33&y=8)

 

<input type="image"> 정의

 

submit (제출/전송) 기능하는 이미지로 된 INPUT 버튼.

 


 

1.

  • 이미지 주소는 src 속성에 지정함.
  • 서버 제출 시, 이미지 클릭한 마우스커서의 x,y 좌표값이 전달됨.

 

2.

주요 브라우저 모두 지원.

 

3. MDN <input type="image"> 예제보기

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/image

 

 

<input type="image"> 구문

 

<input type="image" src="imgURL">

 

 

<input type="image"> 예제 - 이미지 INPUT 우측 정렬

 

<form action="/action_page.php">

  <label for="name">이름: </label>

  <input type="text" id="name" name="name"> 

  <label for="nick">별명: </label>

  <input type="text" id="nick" name="nick"> 

  <input type="image" src="submit.gif" alt="확인" width="50" height="40" style="float:right">

</form>


결과보기



분류 제목
attribute HTML - onplaying 속성 - (오디오/비디오) 재생 중 실행 (= onplaying속성 = 온플레…
attribute HTML - title 속성 ★ - 요소애 대한 추가 정보 지정 (= title속성 = 타이틀속성)
attribute HTML - enctype 속성 - 폼데이터 인코딩방식 지정 (= enctype속성 = 인크타입속성/잉크타입…
attribute HTML - onsubmit 속성 ★ - 폼데이터 제출 시 실행 (= onsubmit속성 = 온서브미트속성/…
attribute HTML - ondragleave 속성 - 드래그 한 요소가 드롭박스 이탈 시 실행 (= ondragleav…
attribute HTML - ononline 속성 - 브라우저가 온라인으로 작동할 때 실행 (= ononline속성 = 온온…
attribute HTML - onseeked 속성 - (오디오/비디오) 재생위치 변경 종료 시, 실행할 코드 지정. (= o…
form HTML - <input type="radio"> 태그 - 오직 1개의 요소만 선택 (= 인풋라디오타입/라디…
attribute HTML - src 속성 ★ - 외부 리소스 URL주소 지정 (= src속성 = 에스알시속성/에스알씨속성/소…
attribute HTML - cellspacing 속성 - 테이블셀간의 간격 지정 (= cellspacing속성 = 셀스페이…
attribute HTML - onemptied 속성 - 미디어 소스가 비어있거나 삭제된 경우에 실행 (= onemptied속…
attribute HTML - onabort 속성 - 미디어 파일 로드 중단 이벤트 발생 시 실행할 코드 정의 (= onabo…
attribute HTML - srclang 속성 - 트랙태그 소스의 언어코드 지정 (= srclang속성 = 에스알시랭속성/…
attribute HTML - form 속성 - 해당 요소가 속하는 폼요소 지정 (= form속성 = 폼속성) ※ 폼 밖에 위…
attribute HTML - onpageshow 속성 - 사용자가 웹페이지 탐색 시 실행 (= onpageshow속성 = 온…
form HTML - <input type="hidden"> 태그 - 숨겨진 입력 필드 지정 (= 사용자 몰래 입력값…
attribute HTML - label 속성 - 요소에 대한 꼬리표 지정 (= label속성 = 레이블속성/라벨속성)
attribute HTML - headers 속성 - 관련된 헤더셀ID 목록 지정 (= headers속성 = 헤더스속성/헤더즈…
attribute HTML - onstalled 속성 - (오디오/비디오) 이용불가 (=사용불가) 시 실행 (= onstall…
attribute HTML - rel 속성 ★ - 링크문서가 현재문서와 어떤 관계인지 지정 (= rel속성 = 릴속성/렐속성)
2/18
목록
찾아주셔서 감사합니다. Since 2012