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

字號(hào):


    這篇文章主要介紹了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ì)大家有所幫助