我正在尝试获取文本输入选项的值并将其添加到价格中。
价格例如是 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()
但这并没有增加价格。如何获取文本输入的值并将其添加到价格中?