0

我使用底部代码刷新页面 js.php 而不重新加载页面。但是我使用的代码不起作用。有什么办法可以解决这个问题?

 <!DOCTYPE html>
    <html>
    <table style="border:1px solid black;">
    <tr>
    <th style="border:1px solid black;">Profit/Loss</th>
    </tr>
    <tr>
    <td style="border:1px solid black;"><?php echo $sumText ;?></td>
    </tr>
    </table>

 <script src="http://code.jquery.com/jquery-latest.js"></script>
        <script>               
  var refreshInterval = '';
$(document).ready(function(){
  refreshInterval = setInterval(function(){
    $('#bid16').load('js.php');
  },2000);
});



</script>
<div id="bid16"></div>
</html>
4

0 回答 0