我已经看到了这个问题jQuery Select2 duplicating,但不适合我。
当我点击加号按钮时,此功能正在运行
$("#novo-insumo").click(function(){
var novoID = $(".insumo-row").length;
var elementCloned = $("#insumo-row")
.clone();
elementCloned.find('#insumo-select0').attr('id', "insumo-select" + novoID);
$("#insumo-tbody")
.find("select")
// call destroy to revert the changes made by Select2
.select2("destroy")
.end()
.append(
elementCloned
);
// enable Select2 on the select elements
$("#insumo-tbody").find("select").select2({
placeholder: "digite",
"language": {
"noResults": function(){
return "Nenhum resultado encontrado";
}
}
});
});
但结果不是我想要的。
我正在使用select2-4.0.2版本。