1

有没有办法将选定的选项放到其他容器中?

如附图:

在此处输入图像描述

4

1 回答 1

3

检查这个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();
    }
});
于 2013-09-19T11:11:57.860 回答