3

我的 twitter BootBox 是这样打开的:

bootbox.dialog("{{$steps[0]}}"); 

十秒钟后,我像这样关闭我的 BootBox:

window.setTimeout(function(){
    bootbox.hideAll();
}, 10000);

是否可以在 BootBox 中显示关闭前的剩余秒数?

4

1 回答 1

5

您可以在消息中添加一个div,如下所示:

bootbox.dialog("Your message <div id='SecondsRemaining'>10</div>"); 

然后使用这个函数更新它:

(function(){
    var remaining = 10; // Number of seconds
    var obj = document.getElementById("SecondsRemaining");
    var timeout = window.setInterval(function(){
        remaining--;
        if(remaining==0) {
            // Time is up, stop the timer and hide the bootbox
            window.clearInterval(timeout);
            bootbox.hideAll();
            return;
        }
        obj.innerHTML = remaining; // Update the value displayed
    }, 1000); // Decrease counter every second
})();

对于 bootbox 4+,格式已更改。应创建对话框:

bootbox.dialog({ message: "Your message <div id='SecondsRemaining'>10</div>" }); 
于 2013-07-20T12:51:39.623 回答