JS与Ajax Get和Post在使用上的区别实例详解
get和post方法最大的不同在于:
1.get方法传值参数在url里面,而post参数放send里面
2.post方法必须加上
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
下面实例可以看get方法
xmlHttp.open("GET","for.php?text="+url,true);
在post里面表现为:
xmlHttp.open("POST","for.php",true);
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
POST和GET方法共用文件
index.php
<scriptsrc="a.js"type="text/javascript"></script>
<ahref="#"onClick="funphp100('o')">o</a>
<ahref="#"onClick="funphp100('t')">t</a>
<ahref="#"onClick="funphp100('x')">x</a>
<divid="php100"></div>
POST方法文件:
a.js
varxmlHttp;
functionS_xmlhttprequest(){
if(window.ActiveXObject){
xmlHttp=newActiveXObject('Microsoft.XMLHTTP');
}elseif(window.XMLHttpRequest){
xmlHttp=newXMLHttpRequest();
}
}
functionfunphp100(n){
vardata="text="+n;//多个参数的,往后加
S_xmlhttprequest();
xmlHttp.open("POST","for.php",true);
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlHttp.onreadystatechange=byphp;
xmlHttp.send(data);
}
functionbyphp(){
varbyphp100=xmlHttp.responseText;
document.getElementById("php100").innerHTML=byphp100;
}
for.php:
<? echo$_POST['text']; ?>
GET方法文件:
a.js:
varxmlHttp;
functionS_xmlhttprequest(){
if(window.ActiveXObject){
xmlHttp=newActiveXObject('Microsoft.XMLHTTP');
}elseif(window.XMLHttpRequest){
xmlHttp=newXMLHttpRequest();
}
}
functionfunphp100(url){
S_xmlhttprequest();
xmlHttp.open("GET","for.php?text="+url,true);
xmlHttp.onreadystatechange=byphp;
xmlHttp.send(null);
}
functionbyphp(){
varbyphp100=xmlHttp.responseText;
document.getElementById("php100").innerHTML=byphp100;
}
for.php:
<? echo$_GET['text']; ?>
以上所述是小编给大家介绍的JS与AjaxGet和Post在使用上的区别实例详解的相关知识,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!