php는 ajax 수신을 구현합니다
Ajax 인터페이스:
우선, 본질을 이해하십시오. 즉, 정상적인 제출은 새로 고침 없이 요청을 보내고 응답을 받은 다음 귀하의 요청에 응답합니다. need
상황에 따라 행동하세요.
<!DOCTYPE html> <html> <head> <script> function loadXMLDoc() { var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("myDiv").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","send.php?name=sunzhiyan",true); xmlhttp.send(); } </script> </head> <body> <div id="myDiv"><h2>Let AJAX change this text</h2></div> <button type="button" onclick="loadXMLDoc()">Change Content</button> </body> </html>
PHP 인터페이스:
여기서 get 메소드를 통해 전달되는 경우 값을 승인하려면 $_GET 메소드를 통해 전달되어야 하며, 그렇지 않으면 $_POST
<?php if($_GET['name'] == sunzhiyan){ echo 'this is right'; }else{ echo 'this is error'; } ?>
이것은 간단한 Ajax 애플리케이션입니다. Ajax 검증을 달성해야 합니다.
추천 튜토리얼: "PHP 튜토리얼"
위 내용은 PHP에서 Ajax 요청을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!