如何在fire jQuery函数后显示Bootstrap Modal

时间:2016-09-20 06:17:36

标签: jquery twitter-bootstrap bootstrap-modal reload

如何在发布Bootstrap Modal jQuery后显示function

这是我的功能

$(".add-to-fav").click(function () {
                event.stopPropagation();
                event.preventDefault();
                var id = $(this).attr('id');
                var is_favorite;

                if ($(this).hasClass('glyphicon-star-empty')) {
                    $(this).removeClass('glyphicon-star-empty').addClass('glyphicon-star');
                    is_favorite = 1;
                } else {
                    $(this).removeClass('glyphicon-star').addClass('glyphicon-star-empty');
                    is_favorite = 0;
                }

                jQuery.ajax({
                    type: "POST",
                    url: "<?php echo base_url(); ?>" + "files" + "/" + "add_favorite",
                    dataType: 'json',
                    data: {selected_id: id, is_favorite: is_favorite},
                    success: function (res) {
                        if (res)
                        {
                            $("div#result").show();
                            $("div#value").html(res.id);
                            $("div#value").html(res.is_favorite);
                        }
                    }
                });

                location.reload(true);

            });

功能正常。 我希望在fire gif

之前显示重新加载location.reload(true);的模态

谢谢。

1 个答案:

答案 0 :(得分:1)

要显示引导模式,请执行以下操作

$('#loading-modal').modal('show');