layer.msg('你确定删除么?', {
time: 0 //不自动关闭
title:'删除提示'
,btn: ['确定', '取消']
,yes: function(index){
alert(1);
$.ajax({
url:"sjsCompanyApplyController.do?DelHolder",
data:{'id':id,'companyid':companyid},
type:"Post",
dataType:"json",
success:function(data){
layer.msg(data.msg);
location.reload(); //刷新页面
},
error:function(data){
$.messager.alert('错误',data.msg);
}
});
layer.close(index);
}
});