本文介绍了如何显示optgroup值+选项值作为选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
看一下以下选择:
<select>
<optgroup label="A">
<option value="">1</option>
<option value="">2</option>
<option value="">3</option>
<optgroup label="B">
<option value="">4</option>
<option value="">5</option>
<option value="">6</option>
</select>
当选择任何元素时,我想在选择中显示其标签+值而不仅仅是值。因此,如果选择4,我希望选择显示B - 4
When any element is selected I would like to display its label + value in the selection instead of just value. So if 4 is selected I would like the selection to show B - 4
推荐答案
如果您需要将所选值恢复为原始值值...尝试这个...
if you need the selected value back to its original value... try this...http://jsfiddle.net/kasperfish/sxvW2/2/
$('select').change(function () {
var opt = $(this).find(':selected');
var sel = opt.text();
var og = opt.closest('optgroup').attr('label');
//alert(sel);
//alert(og);
$(this).blur().find(':selected').text(sel + '-' + og);
});
$('select').focus(function () {
$(this).find('option').each(function(){
console.log($(this).text());
t=$(this).text().split('-');
$(this).text(t[0]);
});
});
使用select2插件更新
您可以执行以下操作
UPDATEusing the select2 plugin you can do the followinghttp://jsfiddle.net/kasperfish/bJxFR/4/
function format(item) {
opt = $('select').find(':selected');
sel = opt.text();
og = opt.closest('optgroup').attr('label');
return item.text+'-'+og;
}
$("select").select2({
formatSelection: format,
escapeMarkup: function(m) { return m; }
});
这篇关于如何显示optgroup值+选项值作为选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!