zoukankan      html  css  js  c++  java
  • 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

    <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;  //多个参数的,往后加
     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'];
    ?>

     >>>>>>>下载实例

  • 相关阅读:
    SQL——索引
    const 与 readonly知多少
    ASP.NET MVC 4 RC的JS/CSS打包压缩功能
    学习IIS & MVC的运行原理
    IIS中使用ASP.NET MVC的经验总结
    cookie 和session 的区别详解
    SQL之经典语句
    SQL存储过程,使用事务(try catch),游标
    深入理解SQL的四种连接-左外连接、右外连接、内连接、全连接
    Sql效能优化总结(续)- sql语句优化篇
  • 原文地址:https://www.cnblogs.com/tinyphp/p/3261818.html
Copyright © 2011-2022 走看看