在以前的 WordPress 版本中,我曾经使用以下代码来自动刷新帖子中的 iframe:
<iframe id='feuille1' src="http://competition.hockeyfrance.com/la/ffhgsheet.php?GameID=20094" width="650" height="1000" name='feuille1' ></iframe>
<script type="text/javascript"> function refreshiframe() { document.getElementById('feuille1').src="http://competition.hockeyfrance.com/la/ffhgsheet.php?GameID=20094" setTimeout("refreshiframe()",30000); } </script>
<body onload="refreshiframe();">
该代码使用简码嵌入到帖子中。在最近的 3.5 更新之前,这一直很好,据我所知,其中包括 jQuery 的更新版本。
有人可以帮我理解为什么这个非常简单的代码不再起作用了吗?我能做些什么来修复它?