如何按设定时间显示弹出模型?

时间:2017-05-03 04:25:34

标签: jquery popup

我想显示用户设置的弹出模型。例如,如果用户设置为上午10:00。显示弹出窗口的时间然后弹出窗口将在上午10点显示。

怎么可能?

请帮帮我......

提前致谢...

1 个答案:

答案 0 :(得分:0)

window.setInterval(function() {
    // this will execute every 5 minutes 
    // => Check the System time here
    // => show the Popup here
}, 300000);

检查工作 Fiddle 是否有jquery弹出窗口。

希望它有所帮助!