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

jquery的post异步请求

时间:2017-11-19 12:33:34      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:string   加载失败   键值   发送请求   color   cal   alert   htm   ack   

1.jQuery.post( url, [data], [callback], [type] ) :使用POST方式来进行异步请求

参数:

url (String) : 发送请求的URL地址.

data (Map) : (可选) 要发送给服务器的数据,以 Key/value 的键值对形式表示。

callback (Function) : (可选) 载入成功时回调函数(只有当Response的返回状态是success才是调用该方法)。

type (String) : (可选)官方的说明是:Type of data to be sent。其实应该为客户端请求的类型(JSON,XML,等等)

$.post("/backend/loadUserTypeList.html",{"s_roleId":rolt},function(result){
            if(result!=null){
                for(var i=0;i<result.length;i++){
                    $("#selectusertype").append("<option value=\""+result[i].valueId+"\" >"+result[i].valueName+"</option>");
                }
            }else{
                alert("用户类型加载失败")!
            }
            
        },‘JSON‘);

jquery的post异步请求

标签:string   加载失败   键值   发送请求   color   cal   alert   htm   ack   

原文地址:http://www.cnblogs.com/sllcom/p/7859323.html

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