我是javascript的新手,我正试着看看我想做什么是可能的。我想获取我在浏览器中打开的当前网页,并执行新的javascript。此页面上有一个计时器,当它增加到特定时间时,我希望它执行按钮单击。
这将是改变的时间,我想添加到if语句中:
07:34:04
此更改时间是否会引发导致javascript运行的事件?我想要的是:
如果时间= 7:35:00,则单击按钮。
感谢您的帮助!
答案 0 :(得分:0)
我想做出贡献.. 我不太了解javascript时间格式,但如果我能查找它,我会回发。 你可以用任何方式使用这样的函数:
var waiter;
function waitForTimer(extime, fn)
{
//Here, fn is the function to be executed..
//While extime is the time at which the function is to be executed..
waiter = setInterval(function(fn,extime){
//this function will check every one second..
if( extime == time )
{
fn();
clearInterval(waiter);
}
else
log("waiting for " + time);
}, 1000);
}
我希望这会有所帮助。