使用JQuery ajax异步请求处理

$.ajax({
                       type: "POST",
                       dataType:'json',
                       //防止IE8 中文乱码
                       contentType: "application/x-www-form-urlencoded; charset=utf-8",
                       url: ReturnUrl,//提交到的action地址
                       success: function(msg){
                         if(msg.success)
                            {
                                //保存回调函数使用的数据
                                XW_dialog.addData('callbackData',msg.map);
                                //确认成功
                                XW_dialog.tips(msg.errorMsg, 3);
                                //刷新列表
                                reloadGrid();
                            }
                            else
                            {
                                XW_dialog.alert('',msg.errorMsg);
                            }
                       }
                    });

 

posted @ 2013-04-25 09:16  ×jokey  阅读(380)  评论(0编辑  收藏  举报