php에서 ajax 양식 제출을 구현하는 방법: 1. HTML 및 PHP 파일을 만들고 양식 양식을 만듭니다. 2. "$.ajax({type: "post",url: "text7.php",data: dataString...})" 코드를 사용하여 양식을 제출합니다.
이 문서의 운영 환경: Windows 7 시스템, PHP7.1, Dell G3 컴퓨터.
php에서 ajax 양식 제출을 구현하는 방법은 무엇입니까?
php jq ajax를 통해 양식을 제출하세요
코드는 다음과 같습니다:
html
<div id="contact_form"> <form name="contact" method="post" > <label for="name" id="name_label">姓名</label> <input type="text" name="name" id="name" size="30" value="" class="text-input" /> <label class="error" for="name" id="name_error">此项必填</label> <label for="email" id="email_label">您的Email</label> <input type="text" name="email" id="email" size="30" value="" class="text-input" /> <label class="error" for="email" id="email_error">此项必填</label> <label for="phone" id="phone_label">您的联系电话</label> <input type="text" name="phone" id="phone" size="30" value="" class="text-input" /> <label class="error" for="phone" id="phone_error">此项必填</label> <br /> <input type="button" name="submit" class="button" id="submit_btn" value="我要发送" /> </form> </div>
js
<script language="javascript"> $(function(){ $(".error").hide(); $(".button").click(function(){ var name= $("#name").val(); if(name==""){ $("#name_error").show(3600); $("#name_error").focus(); return false; //return false 的作用是为了让input框效果是一次只出现一个 //当type为submit的时候,不return false 的话就会提交form表单而没有效果 //当type为button的时候,不用return false也可以显示效果 //原话:而只有当出现错误,即为空时,错误才会出现,因为有 return false 的作用,每次仅会出现一个错误。 } var email= $("#email").val(); if(email==""){ $("#email_error").show(3600); $("#email_error").focus(); return false; } var phone= $("#phone").val(); if(phone==""){ $("#phone_error").show(3600); $("#email_error").focus(); return false; } var dataString = 'name='+ name + '&email=' + email + '&phone=' + phone; //document.write(dataString); $.ajax({ type: "post", url:"text7.php", data:dataString, success:function(mag){ // alert(mag);return; //ajax提交form表单php里无法看post值,只能在回调函数里面打印,下面为成功之后的返回效果 $('#contact_form').html("<div id='message'></div>"); $("#message").html("<p>联系方式已成功提交!</p>") .append("<p>Script design</p>") .hide() .fadeIn(1500, function() { $('#message').append("<img id='checkmark' src='yes.ico' />"); }); } }) return false; }) }) </script>
php
print_r($_POST); echo $_POST['name'].'<br>'."i'm ok!~";die;
추천 학습: "PHP 비디오 튜토리얼"
위 내용은 PHP에서 Ajax 양식 제출을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!