码迷,mamicode.com
首页 > Web开发 > 详细

AJAX的post和get请求区别

时间:2017-05-27 19:12:58      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:select   ==   amp   end   区别   get请求   orm   send   new   

 

 

get请求

// document.querySelector(‘button‘).onclick=function(){
// var txt=document.querySelector(‘input‘).value;
// var xhr=new XMLHttpRequest();
// xhr.open(‘get‘,‘03-fasongshuju.php?msg=‘+txt);
// xhr.setRequestHeader(‘Content-Type‘,‘text/html‘);
// xhr.send(null);
// xhr.onreadystatechange=function(){
// if(xhr.readyState==4&&xhr.status==200){
// var re=xhr.responseText;
// document.querySelector(‘div‘).innerHTML=re;
// }
// }
// }
post请求:

document.querySelector(‘button‘).onclick=function(){
var txt=document.querySelector(‘input‘).value;
var xhr=new XMLHttpRequest();
xhr.open(‘post‘,‘03-fasongshujupost.php‘);
xhr.setRequestHeader(‘Content-Type‘,‘application/x-www-form-urlencoded‘);//post这块不一样
xhr.send(‘msg=‘+txt);//这块也不一样
xhr.onreadystatechange=function(){
if(xhr.readyState==4&&xhr.status==200){
var yaru=xhr.responseText;
document.querySelector(‘div‘).innerHTML=yaru;
}
}
}

AJAX的post和get请求区别

标签:select   ==   amp   end   区别   get请求   orm   send   new   

原文地址:http://www.cnblogs.com/wangyaru/p/6913970.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!