如何在javascript中调用特定日期和时间的函数?

时间:2015-08-19 09:42:43

标签: javascript datetime timer

我正在创建一个Web应用程序,因为我需要在特定的日期和时间自动调用一个函数。我尝试了很多方法,但我无法完成该模块。

例如:

function autoRefresh1() {
    var fullDate = new Date();
    var twoDigitMonth = ((fullDate.getMonth().length+1) === 1)? (fullDate.getMonth()+1) : '0' + (fullDate.getMonth()+1);           
    var annualyear=fullDate.getFullYear();
    var currentDate = fullDate.getDate() + "/" + twoDigitMonth + "/";
    var time = fullDate.getHours() + ":" + fullDate.getMinutes() + ":" + fullDate.getSeconds();            
    var timestamp=currentDate+""+annualyear+"-"+time;

    if(timestamp=="19/08/"+annualyear+"-14:52:50") {

    }

一名学生明年将按特定日期和时间学习第一个标准手段,标准将提高到第二个标准。当特定网页在特定日期和时间打开时,我得到了解决方案。但我需要在不打开网页的情况下运行该功能,但应用程序将仅处于启动位置。我想做什么,来实现这个模块。我是想使用监听器类还是帮助我找出解决方案。

我希望有人能帮助我从这个模块中走出来。

0 个答案:

没有答案