日期:2014-05-16 浏览次数:20659 次
function delete_article(id){
$.post('__URL__/delete',{article_id:id},function(val){
if(val==1){
$('#count').html($('#count').html()-1);
$('#article'+id).remove();
}else if(val==2){
alert("删除失败");
}
});
}
function edit_article(n,id){
switch(n){
case "1":
$.getJSON("__URL__/shenhe",{article_id:id},function(json){
if(json.status==1){
var html="<img src=\"{:aout_image(2)}\" onclick=\"edit_article('2','"+id+"');\" title=\"{:aout(2)}\" />";
$("#edit"+id).html(html);
}else if(json.status==5){
alert(json.info);
var html="<img src=\"{:aout_image("+json.data+")}\" onclick=\"edit_article('"+json.data+"','"+id+"');\" title=\"{:aout("+json.data+")}\" />";
$("#edit"+id).html(html);
}else{
//alert(json.info);
alert(json.info);
}
});
break;
case "2":
if({:getuserinfo("manage")}=={:C("AUDITOR")}){
return false;
}
$.getJSON("__URL__/caina",{article_id:id},function(json){
if(json.status==1){
var html="<img src=\"{:aout_image(3)}\" onclick=\"edit_article('3','"+id+"');\" title=\"{:aout(3)}\" />";
$("#edit"+id).html(html);
}else{
alert(json.info);
}
});
break;
}
}
function yuan_article(id){
//alert("正在检测,请稍后...");
showd();
$.getJSON("__URL__/yuanchuang",{article_id:id},function(json){
hiddend();
if(json.status==1){
alert(json.info);
}else{
$('#count').html($('#count').html()-1);
$('#article'+id).remove();
alert(json.info);
}
});
}
function delete_article(id){
$.ajax({type:'POST',
url:'__URL__/delete',
data:{article_id:id},
success:function(val){
if(val==1){
$('#count').html($('#count').html()-1);
$('#article'+id).remove();
}else if(val==2){
alert("删除失败");
}
},
error:function(xhr){alert('错误\n+'+xhr.status+'\n'+xhr.responseText)}/////
});/*
$.post('__URL__/delete',{article_id:id},function(val){
if(val==1){
$('#count').html($('#count').html()-1);
$('#article'+id).remove();
}else if(val==2){
alert("删除失败");
}
});*/
}