1

我正在尝试使用 Twitter Bootstrap 创建一个详细介绍 Minecraft 服务器统计信息的网站,以便我的用户知道哪个服务器在线。但是,当我在 Twitter Bootstrap 中使用警报组件时,我无法解除警报。这是我的代码:

<!DOCTYPE html>

<title>Dillon's Minecraft Servers</title>

<ul class="nav nav-tabs">
    <li><a href="index.htm">Home</a></li>
    <li class="active"><a href="#">Vanilla</a></li>
    <li><a href="ftb.htm">Feed the Beast</a></li>
    <li><a href="bigdig.htm">Big Dig</a></li>
</ul>

<div class="hero-unit">
    <h2>Vanilla</h2>
    <p>The Vanilla server runs just plain Minecraft. It has some advanced features like Mob Arenas, anti-cheat, and MMO-like leveling.</p>
</div>

<div class="alert">
<a href="#" class="close" data-dismiss="alert">&times;</a>
    <strong>Warning!</strong> This server is currently offline.
</div>

4

3 回答 3

2

没关系。我发现了我的问题。我忘了将 jquery 脚本添加到标题中。对于那个很抱歉。

于 2013-07-09T15:30:28.090 回答
1

您是否考虑过使用 a<button>而不是<a>. 这就是我在 Bootstrap 页面上所做的,因为我遇到了类似的问题。不能解决这个问题,但它是一种有效的方法

<button type="button" class="close" data-dismiss="alert">&times;</button>
于 2013-07-09T15:31:39.907 回答
0

确保 jquery.min.js 在 button.js 之前加载!

于 2013-11-19T12:06:39.593 回答