0
  vars["price"] = $('#awp_p_impact').val(); //here I will add plus the calculation of the heigh..
        vars["test"] = 100;
        vars["weight"] = $('#awp_p_weight').val();
        vars["quantity"] = $('#quantity_wanted').val();
        vars["quantity_available"] = $('#quantityAvailable').length?$('#quantityAvailable').html():awp_quantity;
        vars["id_product"] = $('#product_page_product_id').val();
        vars["awp_isie"] = ($.browser.msie?"1":"0");
        vars["allow_oos"] = allowBuyWhenOutOfStock?"1":"";

$.ajax({
        type: 'POST',
        url: baseDir + 'modules/attributewizardpro/combination_json.php',
        async: false,
        cache: false,
        dataType : "json",
        data: vars,

conversion_json.php で vars["test"] を取得/呼び出す方法は?

4

1 に答える 1