9

我决定我想要一个脚本,如果我需要插入自定义 Bootstrap 模式,我可以使用它。如果不总是使用空的静态 Bootstrap 模态 HTML,我不希望它位于每个页面的底部。

所以,这可能是错误的做法,但这是我的尝试。我创建了一个变量,它是模态“shell”html。然后,当我单击一个设备项时,它会附加到正文中。我有一些内容,然后克隆并附加到模式的标题和正文中。一切正常。但是一旦关闭,我就无法删除模式。这与我通过 JS 插入 HTML 的事实有关,因为如果模态外壳 HTML 静态存在于我的 HTML 页面中,则删除工作正常。

HTML:

<ul>
    <li class="span4 device">
        <div class="inner">
            <h3>Device 4</h3>
            <div class="device-product">
                <img class="device-image" src="img/placeholder-holding-image.png" alt="Holding Image" />
                <a href="#" class="hide">Troubleshoot this item</a>
                <a href="#" class="hide">How to use this product</a>
            </div>
            <div class="device-details">
                <div class="control-group">
                    <label class="control-label">Device Type:</label>
                    <span class="field">Really cool device</span>
                </div>
                <!-- Small amount of hidden additional information -->
                <div class="control-group hide">
                    <label class="control-label">Device ID:</label>
                    <span class="field">123456</span>
                </div>
            </div>
        </div>
    </li>
</ul>

jQuery:

var customModal = $(
    '<div class="custom-modal modal hide fade" tabindex="-1" role="dialog" aria-hidden="true"> \ 
        <div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button></div> \
        <div class="modal-body"></div> \
        <div class="modal-footer"><button class="btn" data-dismiss="modal">Close</button></div> \
    </div>'
);

$('.device').click(function(){
    $('body').append(customModal);
    $(this).find($('h3')).clone().appendTo('.custom-modal .modal-header');
    $(this).find('.device-product, .device-details').clone().appendTo('.custom-modal .modal-body');
    $('.custom-modal.hide').show();
    $('.custom-modal').modal();
});

 $('.custom-modal').on('hidden', function(){
    $(this).remove();
});

所以实际上这只是我正在努力解决的 remove() 。而且,任何关于我是否以错误/低效的方式处理这个问题的评论总是有助于学习!

4

1 回答 1

19

您试图在将div 添加到 DOMhidden之前为事件绑定事件处理程序,因此事件处理程序永远不会绑定到任何东西。.custom-modal

你可以通过两种方式做到这一点。

  1. 委托hidden事件处理程序,以便文档始终侦听hidden源自具有自定义模式类的任何元素的事件:

    $(document).on('hidden', '.custom-modal', function () {
        $(this).remove();
    });
    
  2. 将模态 div 添加到 DOM 后绑定事件处理程序:

    $('.device').click(function(){
        // Push the modal markup into the DOM
        $('body').append(customModal);
    
        // Now that it's in the DOM we can find it and bind an event handler
        $('.custom-modal').on('hidden', function () {
            $(this).remove();
        });
    
        // Continue with other init tasks
        $(this).find('h3').clone().appendTo('.custom-modal .modal-header');
        $(this).find('.device-product, .device-details').clone().appendTo('.custom-modal .modal-body');
        $('.custom-modal.hide').show();
        $('.custom-modal').modal();
    });
    

选项 1 更可取,特别是如果有可能打开多个模式。

于 2013-05-14T01:25:29.970 回答