1. 程式人生 > >html中重複引入檔案導致的angularJS彈窗bug

html中重複引入檔案導致的angularJS彈窗bug

做到品優購專案day02,想要點選新建按鈕,顯示下面的div視窗,但是顯示後閃退....

<!--新建按鈕如下-->

<button type="button" class="btn btn-default" title="新建"  data-toggle="modal" data-target="#editModal"  ng-click="entity={}"><i class="fa fa-file-o"></i> 新建</button>

 

<!--目標div如下-->

<div class="modal fade" id="editModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" >

div內容...

</div> 

emm...對著程式碼邏輯除錯了一個小時,最後發現 我對bootstrap的引用重複了,如下,然後去掉後就解決,真是無力吐槽自己...

  <script src="../plugins/bootstrap/js/bootstrap.min.js"></script>

  <script src="../plugins/bootstrap/js/bootstrap.min.js"></script>