<button> 태그의 formaction 속성
HTML <button> 태그 ⇒
정의 및 특징
<button> 태그의 formaction 속성은 폼 데이터(form data)가 서버로 제출될 때 해당 데이터가 도착할 URL을 명시합니다.
이 속성은 <button> 요소의 type 속성값이 “submit”인 경우에만 사용할 수 있습니다.
문법
<button type="submit" formaction="URL"> |
속성값
속성값 | 설명 | |
---|---|---|
URL |
폼 데이터를 전송할 URL
1. 절대 주소(absolute URL) ex) formaction=“http://www.tcpschool.com/action_target.php” 2. 상대 주소(relative URL) ex) formaction=“/media/action_target.php” |
예제
<form action="/examples/media/action_target.php" method="get">
이름 : <input type="text" name="st_name"><br>
학번 : <input type="text" name="st_id"><br>
학과 : <input type="text" name="department"><br>
<button type="submit" formaction="/examples/media/action_target2.php">제출하기</button>
</form>
지원하는 브라우저 및 버전
속성명 | ||||||
---|---|---|---|---|---|---|
formaction | 9.0 | 지원함 | 10.0 | 4.0 | 5.1 | 10.6 |
HTML5에서 변경된 사항
formaction 속성은 HTML5에서 <button> 태그에 새롭게 추가된 속성입니다.