액션 속성을 사용하여 제출 을 클릭한 후 도달하려는 파일을 추가하십시오. 단추. 이메일을 추가하여 해당 이메일 ID로 데이터를 보낼 수도 있습니다.
예시
양식이 HTML로 제출될 때 양식 데이터를 보낼 위치를 설정하기 위해 다음 코드를 실행할 수 있습니다. −
<!DOCTYPE html> <html> <body> <h2>Student Contact Form</h2> <form action = "mailto:[email protected]" method = "post" enctype = "text/plain"> Student Name:<br><input type = "text" name = "sname"> <br> Student Subject:<br><input type = "text" name = "ssubject"><br> <input type = "submit" value = "Send"> </form> </body> </html>