JQuery:在<select>标签</select> </option>中添加现有的<option>标签

时间:2013-05-02 07:18:01

标签: javascript jquery html css

首先要提前感谢。 在我的jsp页面中我有两个标签。在运行时我想删除多个选定的选项标签并将这些标签插入另一个标签。我已经完成了以下代码添加和删除一个选项标记。

$("input[type=button]").removeAttr("disabled");
    var option =  $('#availableExpert option:selected');
    $('#availableExpert option:selected').remove();
    $('#assignedExpert').append('<option value='+option.val()+'>'+option.text()+'</option>');

如何使用多选选项标签完成此操作?

1 个答案:

答案 0 :(得分:1)

使用

$("input[type=button]").prop("disabled", false);
$('#availableExpert option:selected').detach().appendTo('#assignedExpert');