2014-01-18 64 views
-2

我在搞django和bootstarp!並在我的html文件中包含這段代碼。無法弄清楚爲什麼bootstrap關閉不是workign

<div class="alert alert-danger alert-dismissable"> 
    <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button> 
    Error: 1.2.3.4 - This IP address already exists !! and is added by &quot;bana&quot; 
</div> 

但關閉按鈕無法關閉警報消息。我附上了整個html文件,請看看。

http://shrib.com/XWmnns8a

回答

0

它缺少的jQuery!所以剛添加

<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script> 

這個,它運作良好!

相關問題