87,997
社区成员




//////////Test
doAlert(0);
setTimeout(function(){doAlert(1);},5000)
////////////
function doAlert(state){
//var status = $(".closeBtn").attr('tag');
alert(status);
console.log(status+ "====del after");
/**20151202======begin**/
if(status == 1){
infoConfirm(function(){
});
return;
}else{
$.confirm({
'title' : '提示',
'message' : '删除*****发布。<br /><br />确认删除?',
'buttons' : {
'删除' : {
'class' : 'blueBtn',
'action': function(){
// deleteEndpoint();
}
},
'暂不' : {
'class' : 'grayBtn ml40',
'action': function(){} // Nothing to do in this case. You can as well omit the action property.
}
}
});
}