我正在努力实现一些简单的事情,但无法理解它。
我目前没有代码,但我正在尝试在VBScript
中创建,以便在HTA
内使用倒数计时器,该计时器一直运行到XX:58
- 所以它在第58次开始时结束每小时一分钟,然后它可以重新开始倒计时,直到下一个小时的第58分钟......等等。
有谁知道如何实现这一点,以便我可以在HTA中格式化它?
非常感谢。
答案 0 :(得分:0)
我通常在我的HTA中使用JScript(做了不少)。这是一种可能的解决方案(使用JScript)。您应该能够将其转换为VBS,或者根据需要直接使用:
<script type='text/javascript'>
//Check for the 58th minute once every minute
var Minute = 60000;
//Create a count-down timer to run my function every minute
var CountDownTimer = setInterval(function(){
//If this is NOT the 58th minute, do nothing
if ((new Date()).getMinutes() < 58) return;
//Your code here...
}, Minute);
</script>
干杯!