有没有办法将选定的选项放到其他容器中?
如附图:
检查这个JSFiddle(更新)。当您从中选择一个选项时,#source
它被移动到#target
(在此示例中不移动值为 0 的默认选项):
$(document).on('change', '#source', function() {
$option = $(this).find('option:selected');
if ($option.val()) {
$option.detach();
$option.appendTo('#target');
//select2 adjustments
$('#source').select2('val', '0');
$('#target').select2();
}
});