15

我正在使用谷歌浏览器。
使用Twitter Bootstrap,我想添加一个简单的警报,不幸的是,按下 x 时警报不会消失!

这是我基于警报文档的代码:

<!DOCTYPE html>
<html>
  <head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script>
    <!-- Bootstrap -->
    <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
  </head>
  <body>    
    <div class="alert">
        <button type="button" class="close" data-dismiss="alert">×</button>
        <strong>Warning!</strong> Best check yo self, you're not looking too good.
    </div>      
  </body>
</html>

我也试过:

<!DOCTYPE html>
  <html>
    <head>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script>
      <!-- Bootstrap -->
      <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
    </head>
    <body>    
    <div class="alert">
        <a href="#" class="close" data-dismiss="alert">×</a>
        <strong>Warning!</strong> Best check yo self, you're not looking too good.
    </div>      
    </body>
  </html>

缺少什么让它解雇?

4

2 回答 2

20

感谢davidkonrad的评论。
解决方案很简单,通过添加:

    <script src="js/bootstrap.min.js"></script>
于 2012-11-22T11:57:16.783 回答
0

我编写了一个小型的、可定制的 jquery 插件,它可以以最少的麻烦注入一个正确形成的 Bootstrap 3 警报(根据需要可以有或没有关闭按钮),并允许您在关闭框后轻松地重新生成它。

有关用法、测试和示例,请参阅https://github.com/davesag/jquery-bs3Alert 。

于 2014-05-06T11:27:36.980 回答