テキスト入力オプションの値を取得して価格に追加しようとしています。
価格は、たとえば 1 ドルです。顧客はテキスト フィールドに 5 を入力します。価格は $6 になるはずです。どうすればこれを達成できますか?
これが私が取り組んでいるコードです。
$.ajax({
url: 'index.php?route=product/product/add',
type: 'post',
data: $('.product-info input[type=\'text\'], .product-info input[type=\'hidden\'], .product-info input[type=\'radio\']:checked, .product-info input[type=\'checkbox\']:checked, .product-info select, .product-info textarea'),
dataType: 'json',
success: function(json) {
$('.success, .warning, .attention, information, .error').remove();
if (json['error']) {
if (json['error']['option']) {
for (i in json['error']['option']) {
$('#option-' + i).after('<span class="error">' + json['error']['option'][i] + '</span>');
}
}
}
if (json['success']) {
$('.opprice').html ('<?php echo $text_oprice; ?>' + json['total']);
$('.price-tax').html ('Ex Tax: ' + json['tax']);
}
}
});
コードのこの部分では:
data: $('.product-info input[type=\'text\'], .product-info input[type=\'hidden\'], .product-info input[type=\'radio\']:checked, .product-info input[type=\'checkbox\']:checked, .product-info select, .product-info textarea'),
このようなことをしてみました。
.product-info input[type=\'text\'].val()
しかし、それは価格に加算されませんでした。テキスト入力の値を取得して価格に追加するにはどうすればよいですか?