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数据格式返回的话,就无法获取数据。(转换时用)

  • 相关阅读:
    Shell脚本最佳实践
    tmux会话断电保存自动恢复
    [JD15] 括号匹配方案
    [LeetCode 187.] 重复的DNA序列
    [LeetCode 162.] 寻找峰值
    基于 Chocolatey 打造 Windows 开发环境
    [LeetCode 71.] 简化路径 【IO】
    【栈】栈排序
    [LeetCode 829.] 连续整数求和
    [LeetCode 29.] 两数相除
  • 原文地址:https://www.cnblogs.com/ejllen/p/3716572.html
Copyright © 2011-2022 走看看