如果(确认)ajax 在取消 bottun 中不起作用

问题描述 投票:0回答:0

这是我的conde。该确认窗口出现,但无论我按“确认”还是“取消”,它都会删除数据。你能帮帮我吗?

$(document).on('click', '[data-repeater-delete]', function () {

    if (confirm('Are you sure you want to delete this element?')) {
        var el = $(this).parent().parent();
        var id = $(el.find('.id')).val();

        $.ajax({
            url: '{{route('invoice.product.destroy')}}',
            type: 'POST',
            headers: {
                'X-CSRF-TOKEN': jQuery('#token').val()
            },
            data: {
                'id': id
            },
            cache: false,
            success: function (data) {

            },
        });

    }
});
jquery ajax laravel-blade
© www.soinside.com 2019 - 2024. All rights reserved.