我正在使用jquery ajax检索成功数据,并在bootstraps模式中输出主题。我想要做的是在模态关闭时绑定一个事件,但似乎不起作用。
$(document).on('click', 'a#edit-button', function(e) {
e.preventDefault();
var id = $(e.target).data('id');
var url = 'edit.php?id=' + $(e.target).data('id');
$.ajax({
type: "POST",
url: url,
success: function(data)
{
$('<div class="modal" id="myModal">' + data + '</div>').modal(); // show response from the php script.
},
error:function(){
alert('Error!');
}
}
); });
$('#myModal.modal').bind('hidden', function () {
alert('TEST');
//$('#example.table').dataTable().fnDraw();
});
答案 0 :(得分:0)
$('#modelID')
.on('hide.bs.modal', function () {
console.log('hide');
})
.on('hidden.bs.modal', function () {
console.log('hidden');
})
.on('show.bs.modal', function () {
console.log('show');
})
.on('shown.bs.modal', function () {
console.log('shown');
});