`
runfeel
  • 浏览: 905686 次
文章分类
社区版块
存档分类
最新评论

jquery删除提示框

 
阅读更多
/**
* 删除草稿
*/
function deleteDraft(the,id){
$.messager.confirm('删除草稿提醒', '</br>确定删除这篇草稿吗?</br></br>',function(r){
if(r){
$.ajax({
type : "post",
url : "http://localhost:8090/webplus3/_web/sns/delBlog.do?_p=YXM9Mw__&id=" + id,
success : function(data) {
if(data == "success") {
$(the).parents("li").remove();
parent.initDraft();
}
}
});
}
});
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics