给出检查输入的元素值

时间:2015-02-26 00:52:46

标签: jquery

我正在尝试将元素 .active color 赋予 .swatch输入的值:已选中

jQuery('。active-color')。text(swatch input的值:在这里检查);

jQuery('.active-color').text(function(){
    $(".swatch input:checked").val();
});

1 个答案:

答案 0 :(得分:0)

您需要从回调函数

返回要设置的值
jQuery('.active-color').text(function(){
    return $(".swatch input:checked").val();
});

或者只是将值设置为.text()

jQuery('.active-color').text($(".swatch input:checked").val());