1

在以前的 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 的更新版本。

有人可以帮我理解为什么这个非常简单的代码不再起作用了吗?我能做些什么来修复它?

4

1 回答 1

0

改变这个:

<script type="text/javascript"> function refreshiframe() {document.getElementById('feuille1').src = "http://competition.hockeyfrance.com/la/ffhgsheet.php?GameID=20094"  setTimeout("refreshiframe()",30000); } </script>

到:

<script type="text/javascript"> function refreshiframe() {document.getElementById('feuille1').src = "http://competition.hockeyfrance.com/la/ffhgsheet.php?GameID=20094"; setTimeout("refreshiframe()",30000); } </script>

注意;划分两个不同的js指令,一个用于更改src和另一个调用setTimeout函数。

祝你好运!

于 2012-12-18T08:31:24.767 回答