admin管理员组文章数量:1339794
i need help with this one. I have my function working well with ajax, but i need a ok / cancel delete confirmation box before i send ajax request in order to remove item from database. This is my code:
delete_article = function(article_id){
$.ajax({
type:"POST",
url: "<?php echo base_url()?>admin/article/delete_article",
data: "article_id="+article_id,
asynchronous: true,
cache: false,
beforeSend: function(){
},
success: function(){
$('#articletr'+article_id).hide();
}
});
}
})
i need help with this one. I have my function working well with ajax, but i need a ok / cancel delete confirmation box before i send ajax request in order to remove item from database. This is my code:
delete_article = function(article_id){
$.ajax({
type:"POST",
url: "<?php echo base_url()?>admin/article/delete_article",
data: "article_id="+article_id,
asynchronous: true,
cache: false,
beforeSend: function(){
},
success: function(){
$('#articletr'+article_id).hide();
}
});
}
})
Share
Improve this question
edited Apr 10, 2017 at 21:11
m1k1
asked Feb 2, 2013 at 1:02
m1k1m1k1
1431 gold badge2 silver badges13 bronze badges
1
- 1 cache is misspelled – HPWD Commented Apr 9, 2017 at 15:05
2 Answers
Reset to default 9var answer = confirm ("Are you sure you want to delete from the database?");
if (answer)
{
// your ajax code
}
If you want more control over these kinds of modal dialog prompts with JQuery (buttons that say something other than OK/cancel, more than two buttons, or different styles), you can use JQuery UI Modal Confirmation.
The simplest way is to use the builtin javascript method confirm
:
if (confirm("Really send?")) {
// Do it!
}
Since those native browser dialogs have a very ugly history and can not be styled at all they are often avoided in favour of other methods. A great examples is the Dialog widget of JQuery UI
本文标签: javascriptJquery and Ajax delete confirmation boxStack Overflow
版权声明:本文标题:javascript - Jquery and Ajax delete confirmation box - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743599421a2508358.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论