我使用 jquery 计算价格:
$('.label_1').click(function(){
var total = 0;
$('.option_1:checked').each(function(){
total += parseInt($(this).val());
});
$('#total').html('€ ' + total);
});
价格显示在 DIV 中:
<div id="total"></div>
现在我需要将结果传递给 HTML 表单字段以提交和使用它。
请任何提示如何做到这一点?
谢谢你尼尔