本文實(shí)例講述了Ajax提交post請(qǐng)求。分享給大家供大家參考,具體如下:
前言:博主之前有篇文章是快速入門(mén)Ajax ,主要是利用Ajax做簡(jiǎn)單的get請(qǐng)求,今天給大家分享一篇利用Ajax提交post請(qǐng)求,以及使用post時(shí)需要注意的地方,還是以案例的方式告訴大家。
案例:
注冊(cè)表單
文件結(jié)構(gòu)圖:
06-ajax-reg.html文件:
頁(yè)面中主要有一個(gè)表單,使用了onsubmit事件,在onsubmit事件中首先獲取準(zhǔn)備post的內(nèi)容,然后創(chuàng)建XMLHttpRequest對(duì)象,接著確定請(qǐng)求參數(shù),然后重寫(xiě)回調(diào)函數(shù),在函數(shù)中主要是根據(jù)請(qǐng)求的狀態(tài)來(lái)使用服務(wù)器端返回值,然后發(fā)送請(qǐng)求,最后返回false,讓表單無(wú)法提交,從而頁(yè)面也不會(huì)跳轉(zhuǎn)。
<meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>無(wú)刷新用戶(hù)注冊(cè)界面</title> <link rel="stylesheet" href=""> <script> //創(chuàng)建XMLHttpRequest對(duì)象 function createXhr(){ var xhr = null; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest();//谷歌、火狐等瀏覽器 }else if(window.ActiveXObject){ xhr = new ActiveXObject("Microsoft.XMLHTTP");//ie低版本 } return xhr; } //注冊(cè)方法 function reg(){ //1、獲取準(zhǔn)備Post內(nèi)容 var username = document.getElementsByName('username')[0].value; var email = document.getElementsByName('email')[0].value; //2、創(chuàng)建XMLHttpRequest對(duì)象 var xhr = createXhr(); //3、確定請(qǐng)求參數(shù) xhr.open('POST','./06-ajax-reg.php',true); xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); //4、重寫(xiě)回調(diào)函數(shù) xhr.onreadystatechange = function(){ if(this.readyState == 4 && this.status == 200){ //使用服務(wù)器端返回值 var regres = document.getElementById('regres'); regres.innerHTML = this.responseText; } } //5、發(fā)送請(qǐng)求 var content = 'username='+username+'&email='+email; xhr.send(content); return false;//不跳轉(zhuǎn)頁(yè)面 } </script> <h1>無(wú)刷新用戶(hù)注冊(cè)界面</h1> <form onsubmit="return reg();"> 用戶(hù)名:<input type="text" name="username" /> 郵箱:<input type="text" name="email" /> <input type="submit" value="注冊(cè)" /> </form>
06-ajax-reg.php文件:
代碼比較簡(jiǎn)單,主要是判斷內(nèi)容是否為空,為空則返回“內(nèi)容填寫(xiě)不完整”,不為空則打印提交的內(nèi)容,返回“注冊(cè)成功”。
/** * ajax注冊(cè)程序 * @author webbc */ header('Content-type:text/html;charset=utf-8'); if(trim($_POST['username']) == '' || trim($_POST['email']) == ''){ echo '內(nèi)容填寫(xiě)不完整'; }else{ print_r($_POST); echo '注冊(cè)成功'; }
效果圖:
注意事項(xiàng):
博主以前使用過(guò)Jquery的Ajax,使用$.post
函數(shù)時(shí)不需要指定請(qǐng)求頭的Content-Type內(nèi)容為application/x-www-form-urlencoded,是因?yàn)閖query里面內(nèi)置了,但是使用原生的Ajax,也就是XMLHttpRequest
函數(shù)時(shí)必須加上。
XMLHttpRequest發(fā)送post請(qǐng)求時(shí)必須設(shè)置以下請(qǐng)求頭:
xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
- AJAX 創(chuàng)建 XMLHttpRequest 對(duì)象
- AJAX XMLHttpRequest 服務(wù)器響應(yīng)
- AJAX – onreadystatechange 事件
- AJAX ASP/PHP
- AJAX 教程
- Ajax原理與應(yīng)用案例快速入門(mén)教程
- 解決Ajax方式上傳文件報(bào)錯(cuò)"Uncaught TypeError: Illegal invocation"
- ajax實(shí)現(xiàn)省市三級(jí)聯(lián)動(dòng)效果
- 解決ajax異步請(qǐng)求返回的是字符串問(wèn)題
- 爬取今日頭條Ajax請(qǐng)求
- layui的checbox在A(yíng)jax局部刷新下的設(shè)置方法
- Ajax校驗(yàn)用戶(hù)名是否存在的方法
- 關(guān)于ajax異步訪(fǎng)問(wèn)數(shù)據(jù)的問(wèn)題
- 如何封裝一個(gè)Ajax函數(shù)
- laravel ajax curd 搜索登錄判斷功能的實(shí)現(xiàn)
- AJAX實(shí)現(xiàn)注冊(cè)驗(yàn)證用戶(hù)名
- Ajax異步請(qǐng)求的五個(gè)步驟及實(shí)戰(zhàn)案例
- ajax和fetch的區(qū)別點(diǎn)總結(jié)
- AJAX請(qǐng)求數(shù)據(jù)及實(shí)現(xiàn)跨域的三種方法詳解
- 面試必備之a(chǎn)jax原始請(qǐng)求