Bootstrap 4 引导工具提示不适用于ejs

Bootstrap 4 引导工具提示不适用于ejs,bootstrap-4,ejs,Bootstrap 4,Ejs,我正在添加工具提示,并且添加了调用工具提示所需的脚本。另外,我是cdn bootstrap popper和jquery。我正在处理一个ejs文件。是否有我遗漏的东西,或者是否有更好的方法来调用它,以便我可以使用工具提示 这是我正在加载的脚本 $(函数(){ $('[data toggle=“tooltip”]')。tooltip(); }); 这是我正在处理的工具提示 这是我试图使用的工具提示 保证满意 <script> $(function () {

我正在添加工具提示,并且添加了调用工具提示所需的脚本。另外,我是cdn bootstrap popper和jquery。我正在处理一个ejs文件。是否有我遗漏的东西,或者是否有更好的方法来调用它,以便我可以使用工具提示

这是我正在加载的脚本


$(函数(){
$('[data toggle=“tooltip”]')。tooltip();
});
这是我正在处理的工具提示

这是我试图使用的工具提示
  • 保证满意
  • <script>
        $(function () {
            $('[data-toggle="tooltip"]').tooltip();
        });
    </script>
    
    This is the tooltip i am trying to get working
    <li class="list-group-item list-group-item-action list-group-item-success">
        <i class="fas fa-check" data-toggle="tooltip" data-placement="bottom" title="This does not include the deposit required and will not be refunded for any reason"></i> Satisfaction Guaranteed <i class="fas fa-info info"></i></li>