我有这个 HTML:
{% for entity in items %}
<input type="checkbox" name="{{ entity.getLabel|lower }}" id="{{ entity.getLabel|lower ~ "_choice" }}" value="{{ entity.getId }}" /> {{ entity.getLabel }}
{% endfor %}
{% for entity in items %}
<div id="{{ entity.getLabel|lower ~ "_choice_" ~ entity.getId }}" style="display: none">
<button type="button" class="{{ entity.getLabel|lower }}">Adicionar {{ entity.getLabel|lower }}</button>
</div>
{% endfor %}
<button type="button" class="create-variation" id="create-variation" style="display: none">{{'Crear variaciones'|trans}}</button>
<section id="variations_holder" style="display: none"></section>
这就是它渲染时的样子:
<div style="" id="talla_choice_24">
<span>Talla<input placeholder="Talla" value="" data-id="talla_24" name="input_talla[]"></span>
<br>
<button class="talla" type="button">Adicionar talla</button>
</div>
<div style="" id="color_choice_25">
<span>Color<input placeholder="Color" value="" data-id="color_25" name="input_color[]"></span>
<br>
<button class="color" type="button">Adicionar color</button>
</div>
我第一次创建如下输入:
$('#choices').on("change", ":checkbox", function(e) {
var theName = $(this).attr('name');
var theID = $(this).attr('value');
var hasChecked = $(this).is('checked').length;
var input = "";
input = '<span>' + capitalize(theName) + '<input name="input_' + theName + '[]" data-id="' + theName + '_' + theID + '" value="" placeholder="' + capitalize(theName) + '" /></span><br/>';
if ($(this).is(":checked")) {
$("#" + theName + '_choice_' + theID).find(':button').before(input);
$("#" + theName + '_choice_' + theID).show();
} else {
$("#" + theName + '_choice_' + theID).find(':not(button)').remove();
$("#" + theName + '_choice_' + theID).hide();
}
});
这段代码工作正常,我现在需要的是根据我点击的按钮克隆每个输入元素。例如,少说我点击按钮“button#talla”然后我应该克隆元素:
<span>Talla<input placeholder="Talla" value="" data-id="talla_24" name="input_talla[]"></span><br>
另一方面,如果我单击“button#color”,那么我应该克隆的是:
<span>Color<input placeholder="Color" value="" data-id="color_25" name="input_color[]"></span><br>
当然,代码应该使用第一个模板方法而不是生成的代码,因为它是动态的。我正在做这个:
$("#choices").on("click", ":button", function(e) {
var class_name = $(this).attr('class');
var theID = $(this).attr('value');
$("#" + class_name + "_choice span:last").clone().attr("id", theID).before("button." + class_name);
});
但不起作用,因为它不克隆并且不做任何事情,任何人都可以帮我解决这个问题吗?
PS:有一些 Twig 标签和值,但忘记了它们,因为它们正确设置了值