Ajax实现模态框的调用与数据删除

前端之家收集整理的这篇文章主要介绍了Ajax实现模态框的调用与数据删除前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$("#btDelete").click(function () {
        //Modal frame
        if (id == null) {
            $("#myModalLabel").html('ERROR');
            $("#ModalLabel").html('Please input hotel name!');
            $('#DeleteModal').modal({
                backdrop: 'static'
            })
            return false;
        } else {
            //Delete data 
            $.ajax({
                type: "DELETE",url: _url + "/" + id,dataType: "json",success: function (data) {
                    window.location.reload();
                    console.log('success,');
                },error: function () {
                    console.log('fail,');
                }
            })
            return false;
        }
    });
原文链接:https://www.f2er.com/ajax/160306.html

猜你在找的Ajax相关文章