Uncaught ReferenceError: multiselect is not defined

Uncaught ReferenceError: multiselect is not defined

我将 boostrap 用于多选元素。 我想取消选择一个选项,但出现此错误:

antinsfw:222 Uncaught ReferenceError: multiselect is not defined
at cancel (antinsfw:222)
at HTMLButtonElement.onclick (antinsfw:172)

我页面的完整代码:https://haste.flo-x.fr/urutonelay.xml.

相关要素:

<select class="selectpicker border-gray txt-gray bg-dark" title="select an channel" id="multi-select" multiple>
  {% for channel in channel %}
  <option id="option_multidict" value={{channel[0]}} class="bg-dark txt-gray" {% if channel[0]|string in position %} selected {% endif %}>{{channel[1][:14]}}</option>
  {% endfor %}
</select>

和js代码:

jQuery('selectpicker').multiselect('deselect', ['1']);

感谢您的回答!

制作 jQuery('.selectpicker').selectpicker('deselect', '0'); 并且有效。