如何使用ajax将jquery变量值传递给php变量?

时间:2015-05-09 02:57:21

标签: javascript php jquery html ajax

这是我的javascript代码。在这里我声明了一个名为total_price的变量。我想使用ajax将此变量值传递给php变量。这该怎么做?如果有人能帮助我这样做,我将不胜感激。谢谢。任何人都可以使用此代码执行此操作。

$(document).ready(function() {
    $('#roomOptions #select1, #select2, #select3').change(function() {
        var total = 0;
        var total1=0;
        var Adult_price =0;
        var total2=0;
        var children_price=0;
        var total_price=0;
        $('#roomOptions #select1').each(function() {
            total+=parseInt($(this).val());  
        }); 
        $('#roomOptions #select2').each(function() {
            total1+=parseInt($(this).val());
        }); 
        $('#roomOptions #select3').each(function() {
            total2+=parseInt($(this).val()); 
        });

        Adult_price = total * total2;
        children_price = (total1 * total2) / 2;
        total_price = (Adult_price + children_price + room_rate) * no_of_nights ;

        $('#roomOptions #roomOptions_total3').html(Adult_price);
        $('#roomOptions #roomOptions_total4').html(children_price);
        $('#roomOptions #roomOptions_total').html(total);
        $('#roomOptions #roomOptions_total5').html(total_price);
        $('#roomOptions #roomOptions_total1').html(total1);
        $('#roomOptions #roomOptions_total2').html(total2);
        $('#roomOptions #roomOptions_total6').html(room_rate);
    });
});

1 个答案:

答案 0 :(得分:1)

您可以使用JQuery <tbody ng-repeat="user in usc.users | filter:searchFilter"> <tr> {{user.name}} </tr> </tbody> $.ajax方法将数据发送到服务器。

<强> file.js

$.post

您必须使用已发送的数据名称来获取php中的数据。

<强> file.php

$.ajax({
    url: "/folder/file.php", // php file path
    method: "POST", // send data method
    data: {"total_price": total_price}, // data to send {name: value}
    success: function(response){} // response of ajax
});