最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JS與Ajax Get和Post在使用上的區(qū)別實(shí)例詳解

 更新時(shí)間:2016年06月08日 10:27:53   作者:tinyphp  
這篇文章主要介紹了JS與Ajax Get和Post在使用上的區(qū)別實(shí)例詳解的相關(guān)資料,非常不錯(cuò)具有參考借鑒價(jià)值,需要的朋友可以參考下

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

1.get方法傳值參數(shù)在url里面,而post參數(shù)放send里面

2.post方法必須加上

xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");

下面實(shí)例可以看get方法

xmlHttp.open("GET","for.php?text="+url,true);

在post里面表現(xiàn)為:

xmlHttp.open("POST","for.php",true);
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");

POST和GET方法共用文件

index.php

<script src="a.js" type="text/javascript"></script>
<a href="#" onClick="funphp100('o')">o</a>
<a href="#" onClick="funphp100('t')">t</a>
<a href="#" onClick="funphp100('x')">x</a>
<div id="php100"></div> 

POST方法文件:

a.js

var xmlHttp; 
function S_xmlhttprequest(){ 
if(window.ActiveXObject){ 
xmlHttp=new ActiveXObject('Microsoft.XMLHTTP');
}else if(window.XMLHttpRequest){ 
xmlHttp=new XMLHttpRequest();
}
}
function funphp100(n){
var data = "text=" +n;  //多個(gè)參數(shù)的,往后加
S_xmlhttprequest();
xmlHttp.open("POST","for.php",true); 
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlHttp.onreadystatechange=byphp;
xmlHttp.send(data);
}
function byphp(){
var byphp100=xmlHttp.responseText;
document.getElementById("php100").innerHTML=byphp100;
} 

for.php:

<?
echo $_POST['text'];
?> 

GET方法文件:

a.js:

var xmlHttp; 
function S_xmlhttprequest(){ 
if(window.ActiveXObject){ 
xmlHttp=new ActiveXObject('Microsoft.XMLHTTP');
}else if(window.XMLHttpRequest){ 
xmlHttp=new XMLHttpRequest();
}
}
function funphp100(url){
S_xmlhttprequest();
xmlHttp.open("GET","for.php?text="+url,true); 
xmlHttp.onreadystatechange=byphp; 
xmlHttp.send(null);
}
function byphp(){
var byphp100=xmlHttp.responseText;
document.getElementById("php100").innerHTML=byphp100;
} 

for.php:

<?
echo $_GET['text'];
?>

以上所述是小編給大家介紹的JS與Ajax Get和Post在使用上的區(qū)別實(shí)例詳解的相關(guān)知識(shí),希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評(píng)論

定南县| 塔河县| 白银市| 江达县| 亚东县| 新龙县| 东港市| 新泰市| 藁城市| 宁河县| 阿克陶县| 灵川县| 九寨沟县| 平昌县| 巧家县| 上高县| 凌源市| 阜新市| 武定县| 裕民县| 玛多县| 文化| 黄骅市| 含山县| 景德镇市| 安福县| 博野县| 玛沁县| 偃师市| 肇源县| 喜德县| 准格尔旗| 宁明县| 莱阳市| 金山区| 米泉市| 海门市| 龙井市| 涟源市| 信宜市| 宜良县|