-2

我有以下 JQuery/Javascript

<script>
                var Quantity;
$("select").change(function() {
    var str = "";
    var price = <?php echo $row[price];?>;
    $("select option:selected").each(function() {
                str += $(this).text() + " ";
            });
    $(".plan_price").text("price : " + parseInt(str) * price + " baht");
    Quantity = parseInt(str);
}).change();
    </script>

这对于 php/sql

if ($row[item_amount] - 1 == 0) {
                $sql = "update item set active='2',item_amount=item_amount-1,buy_time=NOW() where id='$id'";
            } else {
                $sql = "update item set item_amount=item_amount-1,buy_time=NOW() where id='$id'";
            }

我想知道是否有任何方法可以从 php 中的 $row[item_amount] 中减去/添加 javascript 变量 Quantity 的值,因为我需要从数据库中减去 Quantity。

4

1 回答 1

0

您可以通过 ajax 调用与 $row[item_amount] 进行交互。您不能直接减去Quantity或减去$row[item_amount]

于 2013-04-08T07:03:25.657 回答