我正在使用引导框架.我目前正在使用“引导选项卡”(隐藏/显示).我正在使用引导版本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天,如果有人有任何想法或任何参考,请帮助.谢谢你的时间.
解决方法
问题是由以下原因造成的:
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