Fieldset .change jQuery

时间:2016-12-16 09:38:32

标签: javascript jquery forms onchange fieldset

我正在尝试在触发单选按钮时更改按钮值。

<fieldset id="product-color">
    <input type="radio" id="red" name="color" value="Red">
    <label for="red">Red</label><br> 
    <input type="radio" id="blue" name="color" value="Blue">
    <label for="blue">Blue</label><br> 
</fieldset>

<button
id="order-button"
data-item-id="1"
data-item-name="Shirt"
data-item-price="20"
data-item-custom2-name="Color"
data-item-custom2-options="Red|Blue">
Add Item
</button>

使用这个小脚本:

$('#product-color').change(function() {
    $('#order-button').data('item-custom2-value', $(this).val());
});

使用select-input-field它可以很好地工作,但不能使用fieldset。有什么不同吗?

1 个答案:

答案 0 :(得分:1)

当单选按钮而不是字段集触发事件时,您需要单选按钮的更改事件:

$('#product-color input').change(function() {
   $('#order-button').data('item-custom2-value', $(this).val());
});

<强> Working Demo