码迷,mamicode.com
首页 > Web开发 > 详细

JQ 确定与取消弹出框,选择确定执行Ajax

时间:2018-04-13 13:22:52      阅读:1850      评论:0      收藏:0      [点我收藏+]

标签:confirm   ons   als   bsp   cti   ajax   ret   ESS   cli   

  $(function () {
            $("#GetCoupon").click(function () {
                function del() {
                    var msg = "请确定领取吗?\n\n请确认!";
                    if (confirm(msg) == true) {
                        return true;
                    } else {
                        return false;
                    }
                }
                if (del()) {
                    var id = $(this).attr("did");
                    $.ajax({
                        type: ‘post‘,
                        url: ‘/Home/Get‘,
                        data: { "id": id },
                        success: function (msg) {
                            console.log(msg);
                            if (msg) {
                                alert("领取成功");
                                window.location.reload();
                            } else {

                            }
                        }
                    })
                } else { alert("用户取消了领取"); }
            })
        })

 

JQ 确定与取消弹出框,选择确定执行Ajax

标签:confirm   ons   als   bsp   cti   ajax   ret   ESS   cli   

原文地址:https://www.cnblogs.com/SeNaiTes/p/8819544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!