克隆后,jquery选择的插件不起作用

时间:2014-02-19 10:37:30

标签: javascript jquery jquery-chosen

克隆现有的选定元素时,我遇到了问题。 选择的克隆元素不起作用。我无法访问所选的选择框。 在它第一次工作 enter image description here

但是当我克隆这个元素时克隆元素不起作用。 enter image description here

这是我尝试过的代码

$("#add_more_item").click(function() {
    $("table#tbl_main tr:last").clone()
                .attr( 'id', function() { return this.id + 1; })
                .find(':text')
                .val('')
                .end()
                .appendTo('table#tbl_main tbody');
});

我已经阅读了这个问题How to clone a jQuery Chosen select box with dynamically populated options?,但我找不到我需要的东西。

0 个答案:

没有答案