我使用 twitter bootstrap 创建的任何模式都不会出现。我不确定自己做错了什么,因为我使用引导程序提供的代码设置了测试模式,但它仍然无法正常工作。
这是我的代码(仅正文):您需要链接到 bootstrap.js、bootstrap-modal.js、jquery.js 和 bootstrap.css
<body>
<div class="modal hide" id="myModal">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
<h3>Modal header</h3>
</div>
<div class="modal-body">
<p>
Modal body would go here...
</p>
</div>
<div class="modal-footer">
<a href="#" class="btn" data-dismiss="modal">Close</a>
<a href="#" class="btn btn-primary">Save changes</a>
</div>
</div>
<a data-toggle="modal" href="#myModal">Show Modal</a>
</body>
以下是引导模式所需的引导包和 jquery 的链接: bootstrap package jquery