gpt4 book ai didi

javascript - 没有 select2/compat/inputData

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:40:02 29 4
gpt4 key购买 nike

我将 Select2JS 4.0.5 与 PHP 和 jQuery 3.2.1 结合使用。首先包含 jQuery,然后是 select2js,然后是其余的 JS 库。我的代码

if ($("#company").length > 0){   // The code below works with typeaheadJS
$('#company').select2()({
source: function (query, syncResults, asyncResults) {
$.ajax({
url: "common/search.php",
data: 'query=' + query,
dataType: "json",
type: "POST",
success: function (data) {
asyncResults($.map(data, function (item) {
return item;
}));
}
});
}
});
}

我不断收到 Error: No select2/compat/inputData

类似的问题说如果我包含完整版本而不是这个错误将被修复。如果我这样做,错误将变为

TypeError: $(...).select2(...) 不是函数

最佳答案

input 标签更改为 select 标签对我有用。

关于javascript - 没有 select2/compat/inputData,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48806587/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com