swal 的简单使用例子
swal
询问弹窗
$(".comments .commentDel").on('click',function () {
swal({
title: "提示",
text: "确定要删除该评论吗?",
icon: "warning",
buttons: true,
}).then((y) => {
if (y) {
let id=$(this).data('id');
Ajax('/api/delComment','POST',{id:id},function (res) {
$("#comment-"+id).prev("hr").remove();
$("#comment-"+id).remove();
});
}
});
});
swal
普通弹窗
/**评论*/
$(".comments").on('click',".commentSubmit",function (event) {
let form=$(this).parents("form");
if(form[0].checkValidity()==false){
form.addClass("was-validated");
}else{
let data=form.serialize();
Ajax(comment_url,'post',data,function (res) {
swal(res.msg, '', "success").then(function () {
location.reload()
});
});
}
return false;
});
文章来源:刘俊涛的博客 欢迎关注公众号、留言、评论,一起学习。
若有帮助到您,欢迎捐赠支持,您的支持是对我坚持最好的肯定(_)
标签:function,comment,form,swal,例子,简单,data,id From: https://www.cnblogs.com/lovebing/p/16837172.html