希望你一切顺利!!
请让我知道如何根据选择 id 显示/隐藏选择下拉列表,例如:-
<select id="parent-{{product.id}}"><option>124</option></select>
例如:-
jquery("#parent-{{product.id}}").hide();
jquery("#parent-{{product.id}}").show();
请让我知道任何想法。如何使用选择 id 显示和隐藏选择下拉列表,就像我这样写:-
id= parent-{{product.id}}
这是我的真实代码,请参阅
<div class="select">
<select id="product-select-{{ product.id }}{{ product-form }}{{ section.id }}{{ block.id }}" name="id" class="multi_select">
{% for v in product.variants %}
<option {% if v == variant %} selected="selected" {% endif %} data-sku="{{ v.sku }}" value="{{ v.id }}">{{ variant.title }} - {{ v.price | money_with_currency }}</option>
{% endfor %}
</select>
</div>
请让我知道有价值的反馈:)