无法通过jquery ajax传递任何变量

时间:2015-11-19 06:54:17

标签: php jquery mysql ajax

如果要检查,我必须根据复选框在mysql表中设置0和1。 我正在使用jquery ajax函数, 但jquery函数下面没有将数据传递给php file.can你请更正我的代码。

$(document).ready(function(){
$("input.active").click(function() {
// store the values from the form checkbox box, then send via ajax below
var check_active = $(this).is(':checked') ? 1 : 0;
var check_id = $(this).attr('value');
     $.ajax({
        type: "GET",
        url: "dynamicupdateicube.php",
        data: {id: check_id, active: check_active}
        success: function(){
           alert("updated");

        }
    });

});


});

如果你能挽救我的生命,那将是件好事。

1 个答案:

答案 0 :(得分:1)

$.ajax({
        type: "GET",
        url: "dynamicupdateicube.php",
        data: {id: check_id, active: check_active},
        success: function(){
           alert("updated");

        }
    });

您在数据行之后错过了逗号 在,

之后加data: {id: check_id, active: check_active}