zoukankan      html  css  js  c++  java
  • jQuery AJAX

    1.***.fuction(response,status,xhr);//回调函数

    xhr 中其实已经有了前面两个参数,只是因为两个比较重要,所以单独拎出来。

     xhr中包含的有:responseText,作为响应主体被返回的文本

                         responseXML,如果响应主体内容类型是"text/xml"或"application/xml",则返回包含响应数据的XML DOM文档

                         status,响应的HTTP状态

                         statusText HTTP状态的说明

    2..load()是局部方法 需要有的调   用于静态文件调用

    3.①$('input').click(function(){

          $.get(‘test.php?url=ycku',function(response,status,xhr){

             $('#box’).html(response);

          });

        });

    ②$('input').click(function(){

          $.get(‘test.php','url=ycku',function(response,status,xhr){

             $('#box’).html(response);

          });

        });

    ③$('input').click(function(){

          $.get(‘test.php',{url:‘ycku’},function(response,status,xhr){

             $('#box’).html(response);

          });

        });

    4.②$('input').click(function(){

          $.post(‘test.php','url=ycku',function(response,status,xhr){

             $('#box’).html(response);

          });

        });

     ③$('input').click(function(){

          $.post(‘test.php',{url:‘ycku’},function(response,status,xhr){

             $('#box’).html(response);

          });

        });

    5.//如果是纯文本(text/html),如果$.get,$.post的第四个参数设置成xml或者是json数据格式返回的话,就无法获取数据。(转换时用)

  • 相关阅读:
    资深技术Leader曹乐:如何成为技术大牛
    深入理解golang: interface
    Redis主体流程分析
    为什么我们总爱讨论技术与业务之间的那些是是非非?
    [产品]九卷读书:产品的视角-产品思维框架
    go http server 编程实践及源码分析
    [产品]九卷读书: 产品的视角-产品经理能力模型
    [产品]:腾讯8分钟产品课
    Golang gRPC学习(02): 编写helloworld服务
    括号生成
  • 原文地址:https://www.cnblogs.com/ejllen/p/3716572.html
Copyright © 2011-2022 走看看