목차
<input type="submit"> 예제 - 서버로 데이터 제출
<input type="submit"> 정의
<input type="submit"> 구문
<input type="submit"> 예제 - 서버로 데이터 제출
<form action="/action_page.php">
<label for="koname">한글이름: </label>
<input type="text" id="koname" name="koname"><br>
<label for="enname">영문이름: </label>
<input type="text" id="enname" name="enname"><br>
<input type="submit" value="확인">
</form>
결과보기
<input type="submit"> 정의
사용자가 입력한 <form> 태그 안의 데이터들을 서버에 전송(제출) 하는 INPUT 요소.
1.
value 속성 이용해 버튼의 글자 지정 가능.
사용자가 입력한 데이터는 <form action ="URL "> 태그의 URL 주소 (만약, 미정의 시 현재 파일)로 전송됨.
onsubmit 속성 이용해 폼 데이터 제출 이벤트 발생 시 실행함 함수 지정 가능.
2. cf. 아래 방법으로도 폼 데이터를 서버로 제출 가능.
<button type="submit">확인</button>
<input type="image" src=" imageURL ">
3.
모든 브라우저 지원 .
4. MDN <input type="submit"> 예제보기
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/submit
<input type="submit"> 구문
<input type="submit">
주소 복사
랜덤 이동