$(function(){
var account_id = $("#account_id").val();
var account_type = $("#account_type").val();
/*这里是为了给页面上定义重复的字段赋值*/
$("#account_id_1").html(account_id);
$("#account_type_1").html(account_type);
/*展示基本信息*/
$.ajax({
url:‘/ccmis/personalRisk/accountTypeInfo.do‘,
type:‘post‘,
dataType:‘json‘,
data:{‘account_id‘:account_id,‘account_type‘:account_type},
success:function(data){
var res = data;
for(var d in res){
if(d==‘status‘){
/*这里就是循环当data中的字段为status的时候,执行这里*/
$("#"+d).html(accountStatus(res[d]));
continue;
}
/*这里是简单的通过jQuery定义的id得到值*/
$("#"+d).html((res[d]));
continue;
}
}
});
});
);
在使用jQuery的时候
$(function(){
这个里边与刚开始使用main函数一样,
例如:loadding();
在这里调用函数,这样的话看着代码规范,效率高,干净整洁
$("#searchRiskOrder").click(function(){
loadInfo();
});
});
function loadding(){
........
}
function loadInfo(){
.........
}