前端在php文件中显示来自jQuery的var数据

时间:2017-08-17 23:13:24

标签: php jquery ajax wordpress

我正在尝试制定计划来展示jQuery.post current_datecheckin_date&来自插件中的php文件的diff_days。此租赁项目的价格使用此处的bkap_get_per_night_price Ajax代码计算:

jQuery.post("'.get_admin_url().'admin-ajax.php", data, function(response) {
eval(response);
var data = {
    current_date: jQuery("#wapbk_hidden_date_checkout").val(),
    checkin_date: jQuery("#wapbk_hidden_date").val(),
    attribute_selected: jQuery("#wapbk_variation_value").val(),
    currency_selected: jQuery(".wcml_currency_switcher").val(),
    block_option_price: jQuery("#block_option_price").val(),
    post_id: "'.$duplicate_of.'",
    diff_days:  jQuery("#wapbk_diff_days").val(),
    quantity: quantity_str,  
    variation_id: variation_id, 
    gf_options: gf_options,
    bundle_optional: bundle_optional,
    action: "bkap_get_per_night_price",
    product_type: "'.$product_type.'"
    '.$attribute_fields_str.' 

};

我在this article找到了一些好的线索,但仍然无法找到解决方案。非常感谢您的帮助。

0 个答案:

没有答案