使用 xajax(和 MooTools?)自动刷新

发布于 2024-10-19 10:00:29 字数 515 浏览 2 评论 0原文

为了测试的目的(并使这个问题更简单),我一直在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不喜欢何必死缠烂打 2024-10-26 10:00:29

您没有向 xajax_refresh 函数分配期刊,而是调用该函数(使用 xajax_refresh())。例如,您将其返回值分配给 periodical (它可以是所有内容,但什么也不会发生,因为返回值不是函数:))。

因此,解决方案是这样的:

<script type="text/javascript">
  xajax_refresh.periodical(2000);
</script>

You are not assigning a periodical to xajax_refresh function, you are calling that function (with xajax_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:

<script type="text/javascript">
  xajax_refresh.periodical(2000);
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文