/** *角色管理 * */ $.namespace("ggfb.detail"); ggfb.detail.init=function(){ } ggfb.detail.back=function(){ location.href=$.app+"/ggfb/main"; } ggfb.detail.save=function(){ $.ajax({ url:$.app+"/ggfb/save", data:$("#addform").serialize(), type:"post", dataType:"json", success:function(data){//ajax返回的数据 if (data.success) { $.alert({ title: '提示', content: '操作成功', confirm: function(){ location.href=$.app+'/ggfb/main'; } }); }else { $.alert({ title: '提示', content: data.message, confirm: function(){ } }); } } }); }