如何从下拉列表中选择一个元素并复制它,并将其添加到同一个下拉菜单中。
我找到了许多答案,其中克隆了整个列表而不是所选元素。像
function CopyItem1()
{
$('#list1').append($('#list1').html());
}
答案 0 :(得分:0)
你可以这样做:
$('#list1').append(function(){
return $(this).find(':selected').clone(); //return the clone of selected option to be appended.
});