当前位置: 编程技术>jquery
jquery删除提示框(弹出是否删除对话框)
来源: 互联网 发布时间:2014-10-04
本文导语: 例子: 代码示例: /** * 删除内容 * jquery 删除时弹出提示框 */ function deleteDraft(the,id){ $.messager.confirm('删除提醒', '确定删除这篇文章吗?',function(r){ if(r){ $.ajax({ type : "post", url : "http://localhost:8090/webplus3/_web/sns/delBlog.do?...
例子:
代码示例:
/**
* 删除内容
* jquery 删除时弹出提示框
*/
function deleteDraft(the,id){
$.messager.confirm('删除提醒', '确定删除这篇文章吗?',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();
}
}
});
}
});
}
* 删除内容
* jquery 删除时弹出提示框
*/
function deleteDraft(the,id){
$.messager.confirm('删除提醒', '确定删除这篇文章吗?',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();
}
}
});
}
});
}