模态不是函数

时间:2019-01-11 06:42:09

标签: jquery bootstrap-4 angular6

尝试打开时出现$(...).modal is not a function错误 我的TS文件中的OnInit函数中的模态。

首先,我在index.html中加载了Jquery.min.js,然后又加载了 bootstrap.min.js

我在引导应用程序中使用了Float标签,并且可以与jquery一起使用

 $(document).ready(function(){
   $('[data-toggle="floatLabel"]')
     .attr('data-value', $(this).val())
     .on('keyup change', function() {
       $(this).attr('data-value', $(this).val());
     });
  $('#exampleModal').modal('show'); 
 });

1 个答案:

答案 0 :(得分:0)

也许您对库的排序错误

u需要推送jquery库

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

boostrap之前

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>