Moment.js在特定时间创建弹出窗口

时间:2015-01-27 10:38:06

标签: javascript jquery html momentjs

这是我第一次使用moment.js,但我试图创建一个弹出窗口或按钮出现的时间段。由于这是我第一次使用它,所以通过文档非常不清楚如何解决这个问题: http://momentjs.com/docs我想到的方式是通过持续时间部分或操纵

$('.button').hide();
if(moment.duration(9, 'hours')){
$('.button').show();
}
else{
$('.button').hide();
}

所以这样的事情,但我不确定,我试图得到它,以便时间应该从早上9点开始

4 个答案:

答案 0 :(得分:3)

无需使用持续时间。 moment.js不会给你超时(持续时间只是持续时间,如2小时等)所以只需使用香草:

function showSomething(){
   $('#something').show();
}

setTimeout(showSomething, 1000);

你当然也可以写:

setTimeout(showSomething, moment.duration(2, 'seconds'));

但我无法在你的问题中看到用例。

答案 1 :(得分:2)

我设法将上述两种方法结合起来。我需要在特定的时间间隔内激活一个按钮:归功于Chridam和jsg。她的解决方案:

    $('#myButton').hide();
        if(moment().hours() >= 13&& moment().hours() <= 17)
          {
            $('#myButton').show();
           }
      else if (moment().hours() >= 1 && moment().hours() <= 2)
{
   $('#myButton').show();
}
else{
   $('#myButton').hide();
}


    // Ability to refresh
    function refreshAt(hours, minutes, seconds) {
   var now = new Date();
   var then = new Date();

   if(now.getHours() > hours || (now.getHours() == hours && now.getMinutes() > minutes) || now.getHours() == hours && now.getMinutes() == minutes && now.getSeconds() >=  seconds) {
           then.setDate(now.getDate() + 1);
   }
   then.setHours(hours);
   then.setMinutes(minutes);
   then.setSeconds(seconds);

   //var timeout = (then.getTime() - now.getTime());
   //setTimeout(showButton, timeout);
};
    refreshAt(13, 00, 00);
    refreshAt(17, 0, 00);
    refreshAt(1, 00, 00);
    refreshAt(2, 00, 00);

答案 2 :(得分:0)

要在某个时间显示按钮,比如说11点12分,你可以试试这个:

$('.button').hide();

function showButton(){
   $('.button').show();
};

function refreshAt(hours, minutes, seconds) {
   var now = new Date();
   var then = new Date();

   if(now.getHours() > hours || (now.getHours() == hours && now.getMinutes() > minutes) || now.getHours() == hours && now.getMinutes() == minutes && now.getSeconds() >=  seconds) {
           then.setDate(now.getDate() + 1);
   }
   then.setHours(hours);
   then.setMinutes(minutes);
   then.setSeconds(seconds);

   var timeout = (then.getTime() - now.getTime());
   setTimeout(showButton, timeout);
};

refreshAt(11, 12, 00);

<强> JSFiddle

答案 3 :(得分:0)

我最终在网站上使用了get set功能,所以它看起来像这样:

$('.button').hide();
if(moment().hours() >= 9 && moment().hours() <= 11){
   $('.button').show();
}
else{
   $('.button').hide();
}

适用于momentjs