JS 코드를 통해 양식을 제출하고 제출 버튼 유형을 일반 버튼으로 설정한 다음 onclick 속성을 추가합니다.
<!DOCTYPE html> <html> <head> <script> function formSubmit() { document.getElementById("frm1").submit(); } </script> </head> <body> <p>Enter some text in the fields below, then press the "Submit form" button to submit the form.</p> <form id="frm1" action="form_action.asp"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br><br> <input type="button" onclick="formSubmit()" value="Submit form"> </form> </body> </html>
JS를 통한 추가 제출 code 양식(제출)과 관련된 기사는 PHP 중국어 웹사이트를 주목하세요!