Jquery选择2未显示选定值
问题描述:
Select2插件未显示带有templateFormat选项的选定选项 任何人都知道如何修复它?Jquery选择2未显示选定值
标记:
<select id="plans" style="width: 75%">
<option value="1" name="text1" price="$1" saving="text" selected="selected"></option>
<option value="2" name="text2" price="$2" saving="text" selected="selected"></option>
JS:
$(document).ready(function() {
$('select#plans').select2({
minimumResultsForSearch: Infinity,
templateResult: formatState
});
});
function formatState(state) {
if (!state.id) return state.text;
var html = '<span class="name">' + state.element.attributes.name.value + "</span>"
html += '<span class="price">' + state.element.attributes.price.value + </span>"
html += '<span class="saving">' + state.element.attributes.saving.value + "</span>"
var $state = $(html);
return $state
}
这里是上面的代码的fiddle
谢谢
答
我figu冲出来。做了以下更改并开始工作。我添加了templateSelection。
$(document).ready(function(){
$('select#plans').select2(
{minimumResultsForSearch: Infinity,
templateResult: formatState,
templateSelection:formatState
});
});
答
一个非常简单的方法来解决这个问题是:
// Step1: Here assuming id of your selectbox is my_id, so this will add selected attribute to 1st option
$('#my_id option').eq(0).prop('selected',true);
// Step2: Now reinitialize your select box
// This will work, if you haven't initialized
selectbox $('#my_id').select2();
or
//This will work, if you have initialized selectbox earlier, so destroy it
first and initialise it
$('#my_id').select2('destroy').select2();
是,它的工作......非常感谢你 – Rafael