Lemonstand使单选按钮可以选择多个,我该如何解决?

时间:2019-01-21 15:02:34

标签: javascript

我可以将“复选框”更改为“无线电”,但仍然可以选择多个复选框。我该怎么做才能只允许一个选择?这是网站:https://winkdiapers.com/product/os-pocket-diaper

  <div class="clearfix">
    {% for index, extra in product.extras %}
        <div class="extra">
          <label class="title" for="{{ 'extra-'~index }}">
              {% if extra.enabled %}
                  <input type="checkbox" id="{{ 'extra-'~index }}" {{ checkbox_state(postedExtras[extra.id], extra.id) }} name="extras[{{ extra.id }}]" data-ajax-handler="shop:product" data-ajax-update="#product-page=shop-product">
              {% else %}
                  <input type="checkbox" disabled="disabled">
              {% endif %}
            {{ extra.name }} ({{ extra.price|currency }})</label>
        </div>
    {% endfor %}
  </div>
{% endif %}


0 个答案:

没有答案