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,
如何在combination_json.php中获取/调用变量[“test”]?
答案 0 :(得分:2)
当您通过Ajax(包含属性的对象)发布数据时,所有这些内容都可以在PHP脚本的全局变量$_POST
中找到。
您可以使用(例如):
访问它们
$test = $_POST['test'];
// $test should contain "100"