d.stopPropagation 不是 bootstrap select-picker 上的函数

d.stopPropagation is not a function on bootstrap select-picker

我的网站出现问题,select 选择器在很多时候都可以正常工作,但是在没有对代码进行任何更改的情况下,select-选择器停止工作。

错误是:

bootstrap-select.min.js:7 Uncaught TypeError: d.stopPropagation is not a function

我已经尝试更新库的版本,但我尝试的所有版本(1.10、1.7、1.6 和 1.5)看起来都存在同样的问题。

你能给我一些关于正在发生的事情的想法吗?如果你能在网站上看到控制台就太棒了。

确保在设置值之前完全初始化选择器:

$('.selectpicker').selectpicker();
$('.selectpicker').selectpicker('val', 'All');

刚刚遇到了类似的问题,但发现

$('#myselectpicker').selectpicker();

没有解决,需要调用刷新;

$('#myselectpicker').selectpicker('refresh');