get和post方法最大的不同在于:
1.get方法传值参数在url里面,而post参数放send里面
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
方法
PHP?text="+url,true);
在post里面表现为:
PHP",true);
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
POST和GET方法共用文件
index.PHP
POST方法文件:
a.js
function funPHP100(n){
var data = "text=" +n; //多个参数的,往后加
S_xmlhttprequest();
xmlHttp.open("POST","application/x-www-form-urlencoded");
xmlHttp.onreadystatechange=byPHP;
xmlHttp.send(data);
}
var data = "text=" +n; //多个参数的,往后加
S_xmlhttprequest();
xmlHttp.open("POST","application/x-www-form-urlencoded");
xmlHttp.onreadystatechange=byPHP;
xmlHttp.send(data);
}
function byPHP(){
var byPHP100=xmlHttp.responseText;
document.getElementById("PHP100").innerHTML=byPHP100;
}
for.PHP:
GET方法文件:
a.js:
function funPHP100(url){
S_xmlhttprequest();
xmlHttp.open("GET",true);
xmlHttp.onreadystatechange=byPHP;
xmlHttp.send(null);
}
S_xmlhttprequest();
xmlHttp.open("GET",true);
xmlHttp.onreadystatechange=byPHP;
xmlHttp.send(null);
}
function byPHP(){
var byPHP100=xmlHttp.responseText;
document.getElementById("PHP100").innerHTML=byPHP100;
}
for.PHP:
以上这篇Js+Ajax,Get和Post在使用上的区别小结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/ajax/48041.html