我有以下 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。