suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - bootstrap dialog 自动关闭

使用 BootstrapDialog.show ,弹出一个对话框提示信息,怎么让它在一秒钟不用点击任何位置,自己自动关闭??

ringa_leeringa_lee2826 Tage vor881

Antworte allen(3)Ich werde antworten

  • 黄舟

    黄舟2017-04-11 13:33:29

    var dlg = BootstrapDialog.show({
        message: 'Hi Apple!'
    });
    setTimeout(function(){
        dlg.close();
    },1000);

    Antwort
    0
  • 高洛峰

    高洛峰2017-04-11 13:33:29

    SetTimeOut()

    Antwort
    0
  • 大家讲道理

    大家讲道理2017-04-11 13:33:29

    setTimeout(function(){

    //此处填使BootstrapDialog关闭的代码

    },1000);

    Antwort
    0
  • StornierenAntwort