首先要提前感谢。 在我的jsp页面中我有两个标签。在运行时我想删除多个选定的选项标签并将这些标签插入另一个标签。我已经完成了以下代码添加和删除一个选项标记。
$("input[type=button]").removeAttr("disabled");
var option = $('#availableExpert option:selected');
$('#availableExpert option:selected').remove();
$('#assignedExpert').append('<option value='+option.val()+'>'+option.text()+'</option>');
如何使用多选选项标签完成此操作?
答案 0 :(得分:1)
使用
$("input[type=button]").prop("disabled", false);
$('#availableExpert option:selected').detach().appendTo('#assignedExpert');