如何使用javascript调用定时器函数
在我的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不了解 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 orwindows.load
method of page call this function....this will work for youor
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..