我正在尝试将元素 .active color 赋予 .swatch输入的值:已选中
jQuery('。active-color')。text(swatch input的值:在这里检查);
jQuery('.active-color').text(function(){
$(".swatch input:checked").val();
});
答案 0 :(得分:0)
您需要从回调函数
返回要设置的值jQuery('.active-color').text(function(){
return $(".swatch input:checked").val();
});
或者只是将值设置为.text()
jQuery('.active-color').text($(".swatch input:checked").val());