jQuery-克隆表行时禁用select2下拉列表 [英] Jquery - select2 dropdown disabled when cloning a table row

查看:46
本文介绍了jQuery-克隆表行时禁用select2下拉列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个带有四个select2下拉列表的表. 当我克隆该行以进行复制时,新行的下拉列表被禁用,我无法单击它们,我必须在代码中添加什么才能激活它们.

I have a table with four select2 dropdown lists. When I clone the row to duplicate it, the dropdown lists of the new row are disabled, I can't click on them, what do I have to add in my code in order to activate them.

HTML表:

<table id="fla_inf" width="100%">
<tbody>
<tr>
<th class="tab_header" colspan="6">Flavors and Additives</th>
</tr>
<tr>
<th class="tab_header_nam">Flavor Brand</th>
<th class="tab_header_nam">Flavor Name</th>
<th class="tab_header_nam">Dropper type</th>
<th class="tab_header_nam">Quantity Unit</th>
<th class="tab_header_nam">Quantity</th>
<th class="tab_header_nam">Add/Remove row</th>
</tr>
<tr class="flavors">
<td>[brand_list]</td>
<td><select id="arome0" class="select2-select"></select></td>
<td><select id="dropper0" class="select2-select">
<option selected="selected" value="type1">type 1</option>
<option value="type2">type 2-3</option>
</select></td>
<td><select id="qtyunit0" class="select2-select">
<option value="ml">ml</option>
<option value="drops">drops</option>
<option selected="selected" value="perc">%</option>
</select></td>
<td><input id="quantity0" class="quantity" type="number" /></td>
<td><input class="addline" src="http://example.org/wp-content/uploads/2015/01/add.png" type="image" /><input class="remline" src="http://example.org/wp-content/uploads/2015/01/delete.png" type="image" /></td>
</tr>
</tbody>
</table>

和jquery代码:

// Add row to the table by cloning existing row
 $(document).on('click', '.addline', function(){

    var $tr = $(this).closest('tr');
    var allTrs = $tr.closest('table').find('tr');
    var lastTr = allTrs[allTrs.length-1];
    var $clone = $(lastTr).clone();
    $clone.find('td').each(function(){
        var el = $(this).find(':first-child');
        var id = el.attr('id') || null;
        if(id) {
            var i = id.substr(id.length-1);
            var prefix = id.substr(0, (id.length-1));
            el.attr('id', prefix+(+i+1));
            el.attr('name', prefix+(+i+1));
        }
    });
    $tr.closest('tbody').append($clone);
});

推荐答案

出于这种原因,我尝试避免克隆元素.克隆的替代方法是使用HTML模板.

I try to avoid cloning elements for this kind of reason. An alternative to cloning is to use a template for the html.

如果要继续克隆,可以在克隆之前取消插入原始行中的Select2控件,然后再重新插入它们.

If you want to continue cloning, you could un-instrument the Select2 controls in the original row before you clone it, and re-instrument them afterwards.

您可以使用.select2('destroy')功能取消对Select2控件的插入.

You un-instrument the Select2 controls with the .select2('destroy') function.

$(document).on('click', '.addline', function () {
    var $tr = $(this).closest('tr');
    var $lastTr = $tr.closest('table').find('tr:last');

    $lastTr.find('.select2-select').select2('destroy'); // Un-instrument original row

    var $clone = $lastTr.clone(); // Clone row

    $clone.find('td').each(function() { // Alter cloned ids
        // ...
    });

    $tr.closest('tbody').append($clone); // Append clone

    $lastTr.find('.select2-select').select2(); // Re-instrument original row

    $clone.find('.select2-select').select2(); // Instrument clone
});

jsfiddle

这篇关于jQuery-克隆表行时禁用select2下拉列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆