使用 xajax(和 MooTools?)自动刷新
为了测试的目的(并使这个问题更简单),我一直在使用 xajax 将随机数输出到页面上的 DIV
中。
$output=rand(20,40);
$ajax_resp->assign('container','innerHTML', $output);
加载 DIV
容器后,我还加载 1 行 Javascript 来调用 xajax 函数。
<div id="container"></div>
<script type="text/javascript">
xajax_refresh().periodical(2000);
</script>
正如您所看到的,我使用名为 periodical()
的 MooTools 函数在 x 毫秒后再次调用该函数。它一开始调用该函数很好,但之后就不行了。
它不会自动刷新。为什么?
For the purpose of testing (and making this question simpler) I have been using xajax to output a random number into a DIV
on the page.
$output=rand(20,40);
$ajax_resp->assign('container','innerHTML', $output);
After the DIV
container is loaded, I also load 1 line of Javascript to call the xajax function.
<div id="container"></div>
<script type="text/javascript">
xajax_refresh().periodical(2000);
</script>
As you can see, I'm using the MooTools function called periodical()
to call the function again after x milleseconds. It calls the function fine at first, but not again.
It doesn't automatically refresh. Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有向 xajax_refresh 函数分配期刊,而是调用该函数(使用 xajax_refresh())。例如,您将其返回值分配给 periodical (它可以是所有内容,但什么也不会发生,因为返回值不是函数:))。
因此,解决方案是这样的:
You are not assigning a periodical to
xajax_refresh
function, you are calling that function (withxajax_refresh()
). For instance, you're assigning its returned value to periodical (It can be everything, but nothing happens because that returned value is not a function :) ).Therefore, the solution is this: