我决定我想要一个脚本,如果我需要插入自定义 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() 。而且,任何关于我是否以错误/低效的方式处理这个问题的评论总是有助于学习!