Ajax_POST submit
* $_post(): jquery는 ajax에서 게시물 요청을 처리합니다
* 기본 구문: $.post(url, data, Success, dataType)
* 매개변수 설명:
* url: 요청한 주소
* data: 서버로 보내야 하는 데이터
* Success(data, status, xhr): 성공적인 실행을 위한 콜백 함수,
* 콜백 매개변수: 1. data: 서버에서 반환되는 데이터
* 2. status: 현재 요청의 상태
* 3.xhr: ajax object
* 일반적으로 반환되는 데이터에만 관심이 있습니다: data
* dataType: 서버에서 반환되는 데이터 형식
* xml, html, script, json, text , _default
* 보통 'json'으로 생략 가능하며 시스템에 의해 자동으로 결정됩니다
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>4.Ajax_POST</title> </head> <body> <form action="api/check.php" method="post"> <fieldset> <legend>用户登录</legend> <p> <label for="email">邮箱:</label> <input type="email" name="email" id="email"> </p> <p> <label for="password">邮箱:</label> <input type="password" name="password" id="password"> </p> <p> <button>登录</button> <span id="tips" style="font-size:1.2em;font-weight: bolder;color:red"></span> </p> </fieldset> </form> </body> </html> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript"> $('button:first').click (function(){ //1.ajax-post提交的地址 var url = 'api/user.php?m=login' //2.要提交到服务器的数据 var data = { "email": $('#email').val(), "password": $('#password').val() } //3.设置执行成功的回调函数 var success = function(res){ if (res == '1') { $('#tips').text('登录成功,正在跳转中...') setTimeout(function(){ location.href = 'api/index.php' },2000) } else { $('#tips').text('邮箱或密码错误,请重新输入...') $('#email').focus() setTimeout("$('#tips').empty()",2000) } } //4.设置返回的数据格式为:json var dataType = 'json' //5.调用全局函数$.post()执行post请求 $.post(url, data, success, dataType) /**简化代码,将参数值直接写到参数中 $.post( 'api/user.php?m=login', { "email": $('#email').val(), "password": $('#password').val() }, function(data){ if (data == '1') { $('#tips').text('登录成功,正在跳转中...') setTimeout(function(){ location.href = 'api/index.php' },2000) } else { $('#tips').text('邮箱或密码错误,请重新输入...') $('#email').focus() setTimeout("$('#tips').empty()",2000) } }, 'json') */ //禁用默认提交 return false }) </script>
위 내용은 Ajax_POST 제출의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!