-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'";
            }

Quantity をデータベースから減算する必要があるため、php の $row[item_amount] との間で JavaScript 変数 Quantity の値を減算/加算する方法があるかどうかを知りたいです。

4

1 に答える 1

0

ajax 呼び出しを介して $row[item_amount] を操作できます。Quantityから直接減算することはできません$row[item_amount]

于 2013-04-08T07:03:25.657 に答える