我正在使用jquery / ajax从我网站上的其他页面引入数据。
代码是......
<script type="text/javascript">
$(document).ready(function() {
$.ajaxSetup({ cache: false });
setInterval(function() {
$('#homenews').load('investor/news_releases.php #content_wide .newspost:lt(2)');
}, 3000);
});
</script>
在其他浏览器中工作正常,但不是IE。
有什么想法吗?