我需要使用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>
答案 0 :(得分:1)
如果要将一些数据从客户端传递到服务器端,请使用AJAX,您可以选择以GET或POST方式发送数据
$.ajax({
url: full_url,
type: 'POST',
data: {"x":1,"y":2}
success: function(result)
{
// do somthing
}
});
答案 1 :(得分:-1)