当我在jQuery中使用带有克隆功能的selectize插件时遇到了这个问题,请在克隆后查看下面的结果。
$('select').each(function(){
if ($(this)[0].selectize) {
var value = $(this).val();
//$(this)[0].selectize.destroy();
$(this).val(value);
}
});
$('.item-row:first')
.children()
.clone() // copy
.appendTo('#id_2');
我只需要删除下面不需要的输入。