如何使用javascript调用定时器函数

发布于 2025-01-06 00:23:56 字数 287 浏览 1 评论 0原文

在我的phonegap android应用程序中,我需要每1秒与服务器通信一次。所以我尝试了示例代码。

这是我的代码:

var timeIntervalId = 0;
timeIntervalId = window.setInterval ( "onload1()", 1000 );
function onload1()
{
  alert("hai");
}

当我在同一页面时它工作正常。但我的问题是我需要在整个应用程序中的任何位置调用这个计时器函数。请指导我。提前致谢。

In my phonegap android application, i need to communicate with the server for every 1 sec. So I have tried with the sample code.

Here is my code:

var timeIntervalId = 0;
timeIntervalId = window.setInterval ( "onload1()", 1000 );
function onload1()
{
  alert("hai");
}

It works fine when I am in the same page. But my problem is I need to call this timer function wherever I am in the whole application. Please Kindly Guide Me. Thanks in Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

热情消退 2025-01-13 00:23:56

我不了解 android,但我这里是我可以在我的网络应用程序中执行的方法...

简单的解决方案是将这个函数放在一个 javascript 文件中,然后形成 document.ready() 方法或页面的 windows.load 方法调用此函数......这对您有用

,或者

您可以将代码放在 doucment.ready() 函数中,然后将整个代码在一个 javascript 文件中,然后在所有页面中包含该 javascript 文件将完成您的工作....

doucment.ready() - 是 jQuery 的一部分..

I dont know about android but I here is my way that i can do in my web application...

simple solution is put this function in one javascript file and than form the document.ready() method or windows.load method of page call this function....this will work for you

or

you can put the code in the doucment.ready() function and that put whole code in one javascript file and than include this javascript file in all pages will do your work ....

doucment.ready() - is part of jQuery..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文