대화 상자를 사용한 JavaScript 양식 제출 확인
양식을 제출할 때 제출하기 전에 사용자에게 입력 내용을 확인하도록 요청하는 것이 바람직한 경우가 많습니다. 이는 실수로 제출하는 것을 방지하고 모든 필수 필드가 올바르게 작성되었는지 확인하는 데 도움이 됩니다.
양식 제출 확인
양식을 제출하기 전에 확인 대화 상자를 표시하려면 JavaScript의 확인() 메소드. 예는 다음과 같습니다.
<code class="js">function confirmFormSubmission() { if (confirm("Confirm submission?")) { // Form submission allowed } else { // Submission canceled } }</code>
코드 수정
코드에서 이를 구현하려면 show_alert() 함수를 다음 코드로 바꾸세요.
<code class="js">function confirmFormSubmission() { if (confirm("Are the fields filled out correctly?")) { document.form.submit(); // Submit the form } else { return false; // Cancel submission } }</code>
인라인 JavaScript 확인
양식 태그 내에서 인라인 JavaScript를 사용할 수도 있습니다.
<code class="html"><form onsubmit="return confirm('Confirm submission?');"></code>
이렇게 하면 외부 기능이 필요하지 않습니다.
검증 및 확인
양식을 제출하기 전에 검증을 수행해야 하는 경우 검증 기능을 생성하여 양식의 onsubmit 이벤트에서 사용할 수 있습니다.
<code class="js">function validateForm(form) { // Validation code goes here if (!valid) { alert("Please correct the errors in the form!"); return false; } else { return confirm("Do you really want to submit the form?"); } }</code>
<code class="html"><form onsubmit="return validateForm(this);"></code>
이 접근 방식을 사용하면 유효성 검사와 확인을 단일 단계로 결합하여 양식이 유효하고 제출용인지 확인할 수 있습니다.
위 내용은 내 JavaScript 양식 제출에 확인 대화 상자를 어떻게 추가합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!