我从教程中有一个简单的引导模式:
<div id="modal-custom-id" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Modal header</h3>
</div><div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<a href="#" class="btn">Close</a>
</div>
</div>
我有一个传单标记,我添加了一个自定义点击功能:
marker.on('click', function(e) {
...
}
如何编写一个点击函数,女巫将调用并显示 Bootstrap 模型并用自定义标题和正文填充它?