我想使用 jquery 每 1 秒从另一个页面获取 div 中的内容它在 Firefox 中运行良好但与 ie8 冲突的问题是它不是每 1 秒后获取内容
<script type="text/javascript">
var auto_refresh = setInterval(
function ()
{
$('#load_tweets').load('home_add_img.php?v=1').fadeIn("slow");
}, 1000); // refresh every 10000 milliseconds
</script>
<div id="load_tweets" style="width:100px; height:200px;">
</div>