zoukankan      html  css  js  c++  java
  • js异步调用的几种方法

    Ext.Ajax.request({  
                    url : urlStr,  
                    params : paramsObj,  
                    method : 'POST',  
                    success : function(response) {  
                        if (callbackFunc) {  
                            var result = Ext.util.JSON  
                                    .decode(response.responseText);  
                            var cbfn = callbackFunc.createCallback(result);  
                            cbfn();  
                        }  
                    },  
                    failure : function() {  
                        Ext.Msg.alert("提示", "方法调用失败");  
                    }  
                });  
     
    Jquery ajax 的 $.ajax(),$.post(),$.get(),$.getJSON();
    $.ajax({

                        type: "post",

                        url: "JqueryCSMethodForm.aspx/GetNowDate",

                        datatype: "json",

                        contentType: "application/json; charset=utf-8",

                        success: function(data) {

                            $("input#showTime").val(eval('(' + data.d + ')')[0].nowtime);

                        },

                        error: function(XMLHttpRequest, textStatus, errorThrown) {

                            alert(errorThrown);

                        }

                    });
    jQuery.post( url [, data] [, success(data, textStatus, jqXHR)] [, dataType] )

    http://api.jquery.com/jQuery.post/
     

    jQuery.get( url [, data] [, success(data, textStatus, jqXHR)] [, dataType] )

    $.get("test.cgi", { name: "John", time: "2pm" },
       function(data){
         alert("Data Loaded: " + data);
       });

    $.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?",
      {
        tags: "cat",
        tagmode: "any",
        format: "json"
      },
      function(data) {
        $.each(data.items, function(i,item){
          $("<img/>").attr("src", item.media.m).appendTo("#images");
          if ( i == 3 ) return false;
        });
      });








  • 相关阅读:
    Delphi对象的产生和消亡过程
    WIN32的时空观
    PHP类的用法
    D7的System.pas单元的实现部分
    PHP的最简单用法
    C调用Lua
    js连连看
    动态属性的一个架构
    Entity Framework开源了
    apachesolr4.0.0ALPHA中文分析器IKAnalyzer4.0
  • 原文地址:https://www.cnblogs.com/guo0/p/2270471.html
Copyright © 2011-2022 走看看