0

我正在使用 jquery ajax 检索成功的数据,并以引导模式输出主题。我想要做的是在模式关闭时绑定一个事件,但似乎不起作用。

   $(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();
     });
4

1 回答 1

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');
    });
于 2017-02-06T07:44:19.707 回答