如何在没有url的情况下将jquery变量传递给php变量?

时间:2015-05-07 05:50:30

标签: javascript php jquery ajax

我需要使用Ajax将jquery变量传递给php变量。如果有人能帮助我,我将非常感激。

    

$(document).ready(function() {
    $('#roomOptions select').change(function() {
        var total = 0;
        $('#roomOptions select').each(function() {
            total+=parseInt($(this).val());

        });
        $('#roomOptions #roomOptions_total').html(total);
    });
});
</script>

2 个答案:

答案 0 :(得分:1)

如果要将一些数据从客户端传递到服务器端,请使用AJAX,您可以选择以GET或POST方式发送数据

$.ajax({
    url: full_url,
    type: 'POST',
    data: {"x":1,"y":2}
    success: function(result)
    {
        // do somthing
    }
});

答案 1 :(得分:-1)

你显然不能。首先执行PHP,然后执行jQuery。