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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里