码迷,mamicode.com
首页 > Web开发 > 详细

jquery 同步和异步请求

时间:2015-06-19 14:53:03      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

 1. $.ajax 同步和异步请求

 1 $.ajax({
 2    type: "POST",
 3    url: "some.php",
 4    async : true,   // true 异步,false 同步 
 5    // or  data:{name:"John",locationi:"Boston"}
 6    data: "name=John&location=Boston",
 7    success: function(msg){
 8      alert( "Data Saved: " + msg );
 9    }
10 });

2. $.get 请求
    jQuery.get(url, [data], [callback], [type])   String,Map,Function,String,请求成功时可调用回调函数。如果需要在出错时执行函数,请使用 $.ajax

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

  jQuery.getJSON(url, [data], [callback])

3.$.post 请求

  jQuery.post(url, [data], [callback], [type])     String,Map,Function,String

1 $.post("test.php", { name: "John", time: "2pm" }, function(data){
2      process(data);
3   });

 

jquery 同步和异步请求

标签:

原文地址:http://www.cnblogs.com/gxl00/p/4588417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!