嗨,我有模态问题
<div id="myModal" class="modal hide fade">
<div class="modal-header">
<a href="#" class="close" data-dismiss="modal">×</a>
<h3>Modal header</h3>
</div>
<div class="modal-body" style="text-align:center">
<p>
<ul class="thumbnails">
<li class="span3" style="">
<img src="http://placehold.it/260x180" alt="">
</li>
</ul>
</p>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-danger">Delete</a>
</div>
</div>
这就是我所说的模态
<td><a data-toggle="modal" href="#myModal">Show poster</a></td>
并在单击链接模式后淡入和淡出而不单击关闭按钮。我从他们的网站上复制了这段代码,有什么问题?
编辑### SOLUTION ### 在模态源代码文件中我评论了这个函数
/* MODAL DATA-API
* ============== */
/*
$(function () {
$('body').on('click.modal.data-api', '[data-toggle="modal"]', function ( e ) {
var $this = $(this), href
, $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
, option = $target.data('modal') ? 'toggle' : $.extend({}, $target.data(), $this.data())
e.preventDefault()
$target.modal(option)
})
})
*/
现在效果很好