How to fix the Error; "SyntaxError: Identifier 'getScrollParents' has already been declared; Bootstrap tooltips require Tether;
How to fix the Error; "SyntaxError: Identifier 'getScrollParents' has already been declared; Bootstrap tooltips require Tether;
我已经尝试通过安装 tether.js 和 utils.js 来解决这个问题,似乎当我修复一个错误时又弹出了 2 个错误。
这是一个与 post 类似的 link,但我遇到了一个稍微不同的问题,这个问题是我从之前的问题中衍生出来的。
有什么我可以做的吗?或者我应该恢复到 boostrap3
tether.js:1 Uncaught SyntaxError: Identifier 'getScrollParents' has already been declared
at tether.js:1
Uncaught Error: Bootstrap tooltips require Tether (http://tether.io/)
at bootstrap.min.js?ver=3.0.0:7
at bootstrap.min.js?ver=3.0.0:7
at bootstrap.min.js?ver=3.0.0:7
我找到了解决方案
https://forums.asp.net/t/2121600.aspx?Uncaught+Error+Bootstrap+tooltips+require+Tether
我改了行
<script src="<?php bloginfo('stylesheet_directory'); ?>/js/node_modules/tether/src/js/tether.js"></script>
到
<script src="<?php bloginfo('stylesheet_directory'); ?>/js/node_modules/tether/dist/js/tether.min.js"></script>
使用 tether.min.js 解决您的问题
我已经尝试通过安装 tether.js 和 utils.js 来解决这个问题,似乎当我修复一个错误时又弹出了 2 个错误。
这是一个与 post 类似的 link,但我遇到了一个稍微不同的问题,这个问题是我从之前的问题中衍生出来的。
有什么我可以做的吗?或者我应该恢复到 boostrap3
tether.js:1 Uncaught SyntaxError: Identifier 'getScrollParents' has already been declared
at tether.js:1
Uncaught Error: Bootstrap tooltips require Tether (http://tether.io/)
at bootstrap.min.js?ver=3.0.0:7
at bootstrap.min.js?ver=3.0.0:7
at bootstrap.min.js?ver=3.0.0:7
我找到了解决方案
https://forums.asp.net/t/2121600.aspx?Uncaught+Error+Bootstrap+tooltips+require+Tether
我改了行
<script src="<?php bloginfo('stylesheet_directory'); ?>/js/node_modules/tether/src/js/tether.js"></script>
到
<script src="<?php bloginfo('stylesheet_directory'); ?>/js/node_modules/tether/dist/js/tether.min.js"></script>
使用 tether.min.js 解决您的问题