如何在角度html文件中添加代码段脚本

时间:2018-07-02 15:35:44

标签: jquery angular bootstrap-4

cli和bootstrap在组件中,我使用bootstrap工具提示 并注意,必须使用jQuery初始化工具提示:

<script>
$(document).ready(function(){
    $('[data-toggle="tooltip"]').tooltip(); 
});
</script>

我应该在由angular.cli生成的angular应用程序中添加它,还是应该在component.html或index.html中添加它?

1 个答案:

答案 0 :(得分:1)

如果要使用工具提示,下拉列表之类的引导程序组件 然后ngx-bootstraps在那里可以使用bootstrap的现成组件

Go with these steps

第二个选项是将jquery安装到angular

Typescript — Integrate jQuery Plugin in your Project