当我使用克隆功能时,Select2 - 正在重复

时间:2016-03-22 12:34:33

标签: javascript jquery web jquery-select2

我已经看到了这个问题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";
               }
            }
        });




    });

但结果不是我想要的。

form

我正在使用select2-4.0.2版本。

0 个答案:

没有答案