我正在尝试自动刷新一个div,其中包含项目的Sub Total但它没有工作/刷新div。 我尝试过很多东西,但还没有准备好工作。
我正在刷新Grand Total,它更新/刷新完全正常,如果我删除主要项目的子项目,它会更改Grand Total罚款,但不会更改项目的Sub Total。
我正在为总计使用单独的刷新代码。
我的代码如下:
的index.php
<?php
$order_temp = mysql_query("select * from temp_cart where ses_mem='".$ses_mem."' order by id");
while ($torder = mysql_fetch_array($order_temp)) {
$prITTD = $torder['id'];
$prITTC = $torder['item_id'];
?>
<script>
function refreshTable() {
$('.tableHolder').load('itemtotal_cart_checkout.php?item_id=' + <?php echo $prITTC; ?>, function() {
setTimeout(function () { refreshTable() }, 1000);
});
}
</script>
<div class="amount tableHolder">
</div>
<?php } ?>
itemtotal_cart_checkout.php
<?php
@session_start();
include('inc/db.php');
$ses_mem = $_SESSION['ses_user_id'];
//session_id();
$getItem = $_GET['item_id'];
$order_temp = "select * from temp_cart where item_id='".$getItem."' AND ses_mem='".$ses_mem."' order by id";
$tordera = $db->query($order_temp);
while ($torder = $tordera -> fetch_assoc()){
$prITTD = $torder['id'];
$prITTC = $torder['item_id'];
$prIDTC = $torder['price_id'];
$qtyT = $torder['qty'];
?>
<span class="amount">
<?php
$chTPaa = mysql_query("
select choice_id
FROM temp_choices
WHERE item_id = '$getItem'
AND ses_mem = '$ses_mem'
group by choice_id
");
$numRows = mysql_num_rows($chTPaa);
while ($chGETaa = mysql_fetch_assoc($chTPaa)){
$temp[] = $chGETaa['choice_id'];
$thelist = implode(",",$temp);
}
if ($numRows > 0){
$sumToCq1 = mysql_query("
SELECT sum(p.price) as sTotal, t.item_id as item_id
FROM temp_cart as t, temp_choices tc, choice_price p
WHERE t.ses_mem='".$ses_mem."'
AND t.item_id = '".$getItem."'
AND tc.item_id = '".$getItem."'
AND p.id = tc.choice_id
");
$sumToC1 = mysql_fetch_assoc($sumToCq1);
$sumToNR = count($sumToCq1);
$choiceOptionsTotal1 = $sumToC1['sTotal'];
$tsl = ($choiceOptionsTotal1*$qtyT)+($qtyT*$prIDTC);
}else{
$tsl = $qtyT*$prIDTC;
}
//number_format($tsl, 3);
$altsl = number_format($tsl, 3, '.', '');
echo $altsl;
?>
</span>
<?php } ?>
答案 0 :(得分:1)
我假设你想在循环中运行它时更新各个div。
尝试这样的事情
<?php
$order_temp = mysql_query("select * from temp_cart where ses_mem='".$ses_mem."' order by id");
while ($torder = mysql_fetch_array($order_temp)) {
$prITTD = $torder['id'];
$prITTC = $torder['item_id'];
$script .= "refreshTable(".$prITTC.");";
?>
<div class="amount tableHolder_<?=$prITTC;?>"></div>
<?
}
?>
<script>
function refreshTable(id) {
$('.tableHolder_'+id).load('itemtotal_cart_checkout.php?item_id='+id, function() {
setTimeout(function () { refreshTable(id) }, 1000);
});
}
<?=$script;?>
</script>