Js+Ajax,Get和Post在使用上的区别小结

前端之家收集整理的这篇文章主要介绍了Js+Ajax,Get和Post在使用上的区别小结前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

get和post方法最大的不同在于:

1.get方法传值参数在url里面,而post参数放send里面

2.post方法必须加上

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

PHP100('x')">x
PHP100">

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);
}

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);
}

function byPHP(){
var byPHP100=xmlHttp.responseText;
document.getElementById("PHP100").innerHTML=byPHP100;
}

for.PHP

以上这篇Js+Ajax,Get和Post在使用上的区别小结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/ajax/48041.html

猜你在找的Ajax相关文章