我正在尝试将引导开关添加到 rails 项目。当我从这里添加我的脚本时:
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.4/js/bootstrap-switch.js" data-turbolinks-track="true"></script>
我最终在控制台中收到错误:
Uncaught TypeError: Cannot read property 'fn' of undefined
at bootstrap-switch.js:743
at bootstrap-switch.js:19
at bootstrap-switch.js:22
以红色突出显示为问题的 fn 在这里:
$.fn.bootstrapSwitch = function (option) {
for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
}
任何想法为什么找不到?或者有人有我可以使用的 bootstrap-switch.js 文件的链接吗?
谢谢!
我也尝试使用bootstrap-switch gem,但这给了我一个不同的错误。