//放入回收站
function dele(obj)
{
//詢問(wèn)框
layer.confirm('您確定要?jiǎng)h除此條信息嗎?', {
btn: ['重要', '取消'] //按鈕
}, function () {
$.ajax({
type: "post",
dataType: "text",
url: "ashx/news.ashx",
data: "our=回收&information_Id=" + obj,
success: function (msg) {
if (msg == "回收成功") {
layer.msg('刪除成功', { icon: 1 }, function () {
clo();
});
}
},
error: function (xml) {
alert("系統(tǒng)繁忙椿肩,請(qǐng)稍后");
}
});
}, function () {
layer.close();
});
}