Javascript 在引导程序4上获取错误:“0”;未捕获错误:工具提示正在转换;

Javascript 在引导程序4上获取错误:“0”;未捕获错误:工具提示正在转换;,javascript,jquery,html,css,twitter-bootstrap,Javascript,Jquery,Html,Css,Twitter Bootstrap,我正在使用Bootstrap4,在我当前的网站上,我正在使用工具提示。我的JS格式正确,但有时在控制台中出现错误 这是我的Javascript|引导程序4 这是控制台中的错误 bootstrap.min.js:7未捕获错误:工具提示正在转换 在h.hide(bootstrap.min.js:7) 离开时(bootstrap.min.js:7) 在兰开夏。(bootstrap.min.js:7) 在htmlanchorement.dispatch(jquery.min.js:3) 位于htmlan

我正在使用Bootstrap4,在我当前的网站上,我正在使用工具提示。我的JS格式正确,但有时在控制台中出现错误

这是我的Javascript|引导程序4 这是控制台中的错误
bootstrap.min.js:7未捕获错误:工具提示正在转换
在h.hide(bootstrap.min.js:7)
离开时(bootstrap.min.js:7)
在兰开夏。(bootstrap.min.js:7)
在htmlanchorement.dispatch(jquery.min.js:3)
位于htmlanchorement.r.handle(jquery.min.js:3)
at Object.trigger(jquery.min.js:3)
在Object.simulate上(jquery.min.js:3)
在HTMLDocument.c(jquery.min.js:3)

GitHub上已经存在此错误的问题:

根据这条线索:

这是固定的大师,尚未发布。此修复程序将作为beta 1的一部分使用


据我所知,将
data animation=“false”
设置为html元素可以避免“快速”悬停错误

这是我的解决方案,如果有帮助请检查

$(文档).ready(函数(){
$('[data toggle=“tooltip”]')。tooltip();
});

交互式演示
使用引导v4.0.0-alpha.6


我正在使用bootstrap 3.7
<script src="vendor/assets/js/jquery.min.js"></script>
<script src="vendor/assets/js/jquery.easing.min.js"></script>
<script src="vendor/assets/js/tether.min.js"></script>
<script src="vendor/assets/js/bootstrap.min.js"></script>
$(document).ready(function(){
    $('[data-toggle="tooltip"]').tooltip();   
});
bootstrap.min.js:7 Uncaught Error: Tooltip is transitioning
   at h.hide (bootstrap.min.js:7)
   at h._leave (bootstrap.min.js:7)
   at HTMLAnchorElement.<anonymous> (bootstrap.min.js:7)
   at HTMLAnchorElement.dispatch (jquery.min.js:3)
   at HTMLAnchorElement.r.handle (jquery.min.js:3)
   at Object.trigger (jquery.min.js:3)
   at Object.simulate (jquery.min.js:3)
   at HTMLDocument.c (jquery.min.js:3)