如何在发布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);
的模态
谢谢。
答案 0 :(得分:1)
要显示引导模式,请执行以下操作
$('#loading-modal').modal('show');