为什么不允许的解雇警报被解雇?

时间:2014-01-16 06:46:02

标签: angularjs twitter-bootstrap

我正在使用Angular JS和Bootstrap构建应用程序。

http://numerology.andrewgolightly.com/

输入一些细节并查看结果。结果页面上有一个可忽略的警报,单击十字时不会被解除。

我基本上复制了http://getbootstrap.com/components/#alerts-dismissable

中的代码
<div class="alert alert-info alert-dismissable">
     <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
     <span class="glyphicon glyphicon-info-sign"></span> This number represents who you are at birth and the native traits that you will carry with you through life. The most important number that will be discussed here is your Life Path number. The Life Path describes the nature of this journey through life.
</div>

任何人都知道为什么我的网站没有被解雇?

2 个答案:

答案 0 :(得分:2)

您只包含了Bootstrap css,但是对于可忽略的功能(以及Bootstrap中的许多其他功能),您还需要包含js文件。

答案 1 :(得分:1)

您必须添加jquery.js和bootstrap.js

 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
 <script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.1/js/bootstrap.min.js"></script>
在你的头部