0

我有一个 PHP 页面,比如说 abc.php。我使用 jQuery/ajax 将变量“var_post”发布到另一个名为 abc_sql.php 的页面。但不幸的是,有时我会在下一页上看到该变量,有时却没有。知道这里有什么问题吗?

abc.php代码片段:

$(document).ready(function () {

    var grand_total = 0;

    $("input").live("change keyup", function () {

        $("#Totalcost").val(function () {

            var total = 0;
            $("input:checked").each(function () {

                total += parseInt($(this).val(), 10);
            });
            var textVal = parseInt($("#min").val(), 10) || 0;

            grand_total = total + textVal;

            return grand_total;
        });

    });
    $("#next").live('click', function () {

        $.ajax({
            url: 'abc_sql.php',
            type: 'POST',
            data: {
                var_post: grand_total
            },
            success: function (data) {
             }
        });
    });
});

abc_sql.php

$total = $_POST['var_post'];
$sql = "INSERT INTO total_tab (total)VALUES('$total')";
if ($total > 0) {
    $res = mysql_query($sql);
}
4

1 回答 1

2

您的 ajax 调用中有一个空的成功回调。无论您从服务器收到什么,都将其丢弃。<script>用 PHP 打印的内容永远不会被浏览器执行,因为您永远不会将它添加到 DOM 中。

试试这个作为你的成功回调:

success: function (data) {
    $('<div></div>').html(data).appendTo($('body'));
}
于 2013-09-27T15:41:10.700 回答