jquery之ajax
jquery之ajax
jquery之ajax
Ajax
$.ajax({
url: basePath + "/report/departmentperformance/getWriteOffNetAddr",
type:'POST', //GET
async:false, //或false,是否异步
data:{
orgId:$("#orgId").val()
},
timeout:5000, //超时时间
dataType:'json', //返回的数据格式:json/xml/html/script/jsonp/text
beforeSend:function(xhr){
},
success:function(data,textStatus,jqXHR){
if (data.netAddr != ""){
openWindow(data.netAddr+para, "周边系统", 1500, 600);
}else{
ualert("提示", "数据库尚未配置本省报账单查询地址配置");
}
},
error:function(xhr,textStatus){
},
complete:function(){
}
})