Bootstrap的JavaScript需要jQuery版本1.9.1或更高版本,但低于版本3

前端之家收集整理的这篇文章主要介绍了Bootstrap的JavaScript需要jQuery版本1.9.1或更高版本,但低于版本3前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
介绍

我正在使用引导框架.我目前正在使用“引导选项卡”(隐藏/显示).我正在使用引导版本3和jquery版本3.0.2.

问题

我的选项卡不工作,除非我加载的版本小于1.6.But然后ajax使jQuery的问题小于1.6. Chrome控制台给我这个错误.

bootstrap.min.js:6 Uncaught Error: Bootstrap’s JavaScript requires
jQuery version 1.9.1 or higher,but lower than version 3

我尝试了不同的后备技术,但是无法正确实现.

我被困在这里2天,如果有人有任何想法或任何参考,请帮助.谢谢你的时间.

解决方法

目前,Bootstrap 3.x不支持jQuery 3.x,如下所示: https://github.com/twbs/bootstrap/issues/16834

问题是由以下原因造成的:

jQuery 3 is more strict than jQuery 2. It’s like XHTML and HTML.
Backward compatibility is preserved and code doesn’t look like a mess.
If I’m not mistaken,all you need to do is replace show() and hide()
functions with .css(‘display’,”) or addClass(‘hidden’) and fix a
selector in alert.js (QUnit fails on this line because $(‘#’) is
invalid in jQuery 3)

必须在Bootstrap 3.3.7版本中修复:https://github.com/twbs/bootstrap/issues/16834#issuecomment-225039913

原文链接:https://www.f2er.com/bootstrap/234053.html

猜你在找的Bootstrap相关文章