我使用底部代码刷新页面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>