duanshan3065 2016-10-15 15:28
浏览 54
已采纳

Php jquery不会自动刷新div

I am trying to auto refresh a div which contains the Sub Total of item but its not working/refreshing the div. I tried many things but its not ready to work.

I am refreshing the Grand Total which updates/refreshes perfectly fine and if i removes a sub item of a main item it changes the Grand Total fine but does not change the Sub Total of the items.

enter image description here

I am using the separate refresh code for the grand total.

My codes are below:

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 } ?>
  • 写回答

1条回答 默认 最新

  • douhandie6615 2016-10-15 16:13
    关注

    I assume you want to update individual divs as you are running it within a loop.

    Try something like this

    <?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>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 再不同版本的系统上,TCP传输速度不一致
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式