将Option文本输入的值添加到price

时间:2013-08-22 08:52:46

标签: php ajax opencart

我正在尝试获取文本输入选项的值并将其添加到价格中。

价格例如为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()

但它没有加起来的价格。如何获取文本输入的值并将其添加到价格中?

0 个答案:

没有答案