我正在尝试使用选择多选的插件来构建我的下拉菜单。 这是我基于的行为:
所以,而不是有3个harcoded<选项>在我的选择。我希望此列表是由ajax请求填充的json数组的值。这将由自动完成触发。
所以,如果用户输入“car”,我通过ajax调用发送信件,并且我回到这样的数组:
[{ “ID”: “2489”, “名称”: “卡丽”},{ “ID”: “2490”, “名称”: “卡罗琳”},{ “ID”: “2491”,”命名 “:” 卡罗尔“}]
代码:
$(function() {
$(".chzn-select").chosen();
$(".chzn-select-deselect").chosen({allow_single_deselect:true});
$('.chzn-choices input').autocomplete({
source: function( request, response ) {
$.ajax({
url: "/change/name/autocomplete/"+request.term+"/",
dataType: "json",
success: function( data ) {
response( $.map( data, function( item ) {
$('ul.chzn-results').append('<li class="active-result">' + item.name + '</li>');
}
});
}
});
结果:
我输入“car”,在下拉列表中我得到“没有汽车的结果”,然后我得到了我想要的所有结果。
1。为什么我收到“无结果”消息,因为我可以在我的json数组中看到我的列表中有结果。
-----------------------------
当我删除“car”并输入“sam”时。在“汽车”结果之后显示“sam”的结果。 (基本上,我看到两者的结果,而不仅仅是我当前搜索的结果)
2。我想我要清除keyUp上的ul?认为插件已经这样做了
-----------------------------
当我点击名称实际选择它并将其添加到选择中时,我在selected.js文件中出现了javascript错误
项目未定义
“item.selected = true;”第732行
插件的链接: http://harvesthq.github.com/chosen/chosen/chosen.jquery.js
并且它没有在select中添加任何内容。
第3。不知道为什么会发生这种情况
-----------------------------
你们对我做错了什么有什么想法吗?我完全被困在这里......!
哦,顺便说一句,我不介意更改插件源,因为它是我使用它的唯一地方....
答案 0 :(得分:46)
您可以使用优秀的 Select2 插件通过AJAX动态填充列表。 From my answer to "Is there a way to dynamically ajax add elements through jquery chosen plugin?":
答案 1 :(得分:27)
试试这个:
$('.chzn-choices input').autocomplete({
source: function( request, response ) {
$.ajax({
url: "/change/name/autocomplete/"+request.term+"/",
dataType: "json",
beforeSend: function(){$('ul.chzn-results').empty();},
success: function( data ) {
response( $.map( data, function( item ) {
$('ul.chzn-results').append('<li class="active-result">' + item.name + '</li>');
}));
}
});
}
});
答案 2 :(得分:20)
Ashirvad的回答不再适用。请注意,班级名称更改并使用选项元素而不是 li 元素。我更新了我的答案,不使用已弃用的“成功”事件,而是选择.done():
$('.chosen-search input').autocomplete({
minLength: 3,
source: function( request, response ) {
$.ajax({
url: "/some/autocomplete/url/"+request.term,
dataType: "json",
beforeSend: function(){ $('ul.chosen-results').empty(); $("#CHOSEN_INPUT_FIELDID").empty(); }
}).done(function( data ) {
response( $.map( data, function( item ) {
$('#CHOSEN_INPUT_FIELDID').append('<option value="blah">' + item.name + '</option>');
}));
$("#CHOSEN_INPUT_FIELDID").trigger("chosen:updated");
});
}
});
答案 3 :(得分:12)
这可能会有所帮助。你必须触发一个事件。
$("#DropDownID").trigger("liszt:updated");
其中“DropDownID”是<select>
的ID。
答案 4 :(得分:8)
当DOM中的OPTION元素发生变化时,Chosen插件不会自动更新其选项列表。您必须向其发送一个事件以触发更新:
Pre Chosen 1.0:
$('.chzn-select').trigger("liszt:updated");
选择1.0
$('.chosen-select').trigger("chosen:updated");
如果您正在动态管理OPTION元素,那么只要OPTION更改,您就必须这样做。你这样做的方式会有所不同 - 在AngularJS中,尝试这样的事情:
$scope.$watch(
function() {
return element.find('option').map(function() { return this.value }).get().join();
},
function() {
element.trigger('liszt:updated');
}
}
答案 5 :(得分:5)
选择的答案已经过时,熔化/ ajax选择的插件也是如此。
使用Select2插件有很多错误,我无法解决它。
这是我对这个问题的回答。
我在用户输入后用功能触发器集成了我的解决方案。 感谢这个答案:https://stackoverflow.com/a/5926782/4319179。
//setup before functions
var typingTimer; //timer identifier
var doneTypingInterval = 2000; //time in ms (2 seconds)
var selectID = 'YourSelectId'; //Hold select id
var selectData = []; // data for unique id array
//on keyup, start the countdown
$('#' + selectID + '_chosen .chosen-choices input').keyup(function(){
// Change No Result Match text to Searching.
$('#' + selectID + '_chosen .no-results').html('Searching = "'+ $('#' + selectID + '_chosen .chosen-choices input').val() + '"');
clearTimeout(typingTimer); //Refresh Timer on keyup
if ($('#' + selectID + '_chosen .chosen-choices input').val()) {
typingTimer = setTimeout(doneTyping, doneTypingInterval); //Set timer back if got value on input
}
});
//user is "finished typing," do something
function doneTyping () {
var inputData = $('#' + selectID + '_chosen .chosen-choices input').val(); //get input data
$.ajax({
url: "YourUrl",
data: {data: inputData},
type:'POST',
dataType: "json",
beforeSend: function(){
// Change No Result Match to Getting Data beforesend
$('#' + selectID + '_chosen .no-results').html('Getting Data = "'+$('#' + selectID + '_chosen .chosen-choices input').val()+'"');
},
success: function( data ) {
// iterate data before append
$.map( data, function( item ) {
// matching data eg: by id or something unique; if data match: <option> not append - else: append <option>
// This will prevent from select the same thing twice.
if($.inArray(item.attr_hash,selectData) == -1){
// if not match then append in select
$('#' + selectID ).append('<option id="'+item.id+'" data-id = "'+item.id+'">' + item.data + '</option>');
}
});
// Update chosen again after append <option>
$('#' + selectID ).trigger("chosen:updated");
}
});
}
// Chosen event listen on input change eg: after select data / deselect this function will be trigger
$('#' + selectID ).on('change', function() {
// get select jquery object
var domArray = $('#' + selectID ).find('option:selected');
// empty array data
selectData = [];
for (var i = 0, length = domArray.length; i < length; i++ ){
// Push unique data to array (for matching purpose)
selectData.push( $(domArray[i]).data('id') );
}
// Replace select <option> to only selected option
$('#' + selectID ).html(domArray);
// Update chosen again after replace selected <option>
$('#' + selectID ).trigger("chosen:updated");
});
答案 6 :(得分:1)
像Vicky建议的那样,Select2内置了AJAX功能,看起来像一个很棒的插件。
如果您不想从选择切换,请尝试AJAX-Chosen https://github.com/meltingice/ajax-chosen
答案 7 :(得分:1)
选择的API已经发生了很大的变化。
如果给出的解决方案不适合您,您可以试试这个:https://github.com/goFrendiAsgard/gofrendi.chosen.ajaxify
这是功能:
// USAGE:
// $('#some_input_id').chosen();
// chosen_ajaxify('some_input_id', 'http://some_url.com/contain/');
// REQUEST WILL BE SENT TO THIS URL: http://some_url.com/contain/some_term
// AND THE EXPECTED RESULT (WHICH IS GOING TO BE POPULATED IN CHOSEN) IS IN JSON FORMAT
// CONTAINING AN ARRAY WHICH EACH ELEMENT HAS "value" AND "caption" KEY. EX:
// [{"value":"1", "caption":"Go Frendi Gunawan"}, {"value":"2", "caption":"Kira Yamato"}]
function chosen_ajaxify(id, ajax_url){
console.log($('.chosen-search input').autocomplete);
$('div#' + id + '_chosen .chosen-search input').keyup(function(){
var keyword = $(this).val();
var keyword_pattern = new RegExp(keyword, 'gi');
$('div#' + id + '_chosen ul.chosen-results').empty();
$("#"+id).empty();
$.ajax({
url: ajax_url + keyword,
dataType: "json",
success: function(response){
// map, just as in functional programming :). Other way to say "foreach"
$.map(response, function(item){
$('#'+id).append('<option value="' + item.value + '">' + item.caption + '</option>');
});
$("#"+id).trigger("chosen:updated");
$('div#' + id + '_chosen').removeClass('chosen-container-single-nosearch');
$('div#' + id + '_chosen .chosen-search input').val(keyword);
$('div#' + id + '_chosen .chosen-search input').removeAttr('readonly');
$('div#' + id + '_chosen .chosen-search input').focus();
// put that underscores
$('div#' + id + '_chosen .active-result').each(function(){
var html = $(this).html();
$(this).html(html.replace(keyword_pattern, function(matched){
return '<em>' + matched + '</em>';
}));
});
}
});
});
}
这是你的HTML:
<select id="ajax_select"></select>
这是你的javasscript:
// This is also how you usually use chosen
$('#ajax_select').chosen({allow_single_deselect:true, width:"200px", search_contains: true});
// And this one is how you add AJAX capability
chosen_ajaxify('ajax_select', 'server.php?keyword=');
有关详细信息,请参阅https://github.com/goFrendiAsgard/gofrendi.chosen.ajaxify#how-to-use
答案 8 :(得分:0)
如果您有两个或更多选择并使用Steve McLenithan的回答,请尝试将第一行替换为:
$('#CHOSENINPUTFIELDID_chosen > div > div input').autocomplete({
不删除后缀:_chosen
答案 9 :(得分:0)
var object = $("#lstValue_chosen").find('.chosen-choices').find('input[type="text"]')[0];
var _KeyCode = event.which || event.keyCode;
if (_KeyCode != 37 && _KeyCode != 38 && _KeyCode != 39 && _KeyCode != 40) {
if (object.value != "") {
var SelectedObjvalue = object.value;
if (SelectedObjvalue.length > 0) {
var obj = { value: SelectedObjvalue };
var SelectedListValue = $('#lstValue').val();
var Uniqueid = $('#uniqueid').val();
$.ajax({
url: '/Admin/GetUserListBox?SelectedValue=' + SelectedListValue + '&Uniqueid=' + Uniqueid,
data: { value: SelectedObjvalue },
type: 'GET',
async: false,
success: function (response) {
if (response.length > 0) {
$('#lstValue').html('');
var options = '';
$.each(response, function (i, obj) {
options += '<option value="' + obj.Value + '">' + obj.Text + '</option>';
});
$('#lstValue').append(options);
$('#lstValue').val(SelectedListValue);
$('#lstValue').trigger("chosen:updated");
object.value = SelectedObjvalue;
}
},
error: function (xhr, ajaxOptions, thrownError) {
//jAlert("Error. Please, check the data.", " Deactivate User");
alert(error.StatusText);
}
});
}
}
}
答案 10 :(得分:0)
如果要从ajax生成选择标签,请在成功函数中添加以下内容:
$('.chosen').chosen();
或者,如果您通过单击添加更多按钮生成选择标签,然后添加:
$('.chosen').chosen();
在函数内部。
答案 11 :(得分:0)
@Ashivad的解决方案主要解决了我的问题,但是我需要进行这一行添加,以防止显示结果下拉列表后删除输入:
在自动完成的success
回调中,在触发chosen:updated
后添加了以下行:
$combosearchChosen.find('input').val(request.term);
完整列表:
var $combosearch = $('[data-combosearch]');
if (!$combosearch.length) {
return;
}
var options = $combosearch.data('options');
console.log('combosearch', $combosearch, options);
$combosearch.chosen({
no_results_text: "Oops, nothing found!",
width: "60%"
});
// actual chosen container
var $combosearchChosen = $combosearch.next();
$combosearchChosen.find('input').autocomplete({
source: function( request, response ) {
$.ajax({
url: options.remote_source + "&query=" + request.term,
dataType: "json",
beforeSend: function(){
$('ul.chosen-results').empty();
},
success: function( data ) {
response( $.map( data, function( item, index ) {
$combosearch.append('<option value="' + item.id + '">' + item.label + '</option>');
}));
$combosearch.trigger('chosen:updated');
$combosearchChosen.find('input').val(request.term);
}
});
}
});