jQuery:selectize插件

时间:2017-10-30 01:43:10

标签: jquery selectize.js

当我在jQuery中使用带有克隆功能的selectize插件时遇到了这个问题,请在克隆后查看下面的结果。

click this to show image

$('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');

我只需要删除下面不需要的输入。

0 个答案:

没有答案