📜  html 消失后弹出消息 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:14.934000             🧑  作者: Mango

代码示例1
setTimeout(function() {

      // Do something after 3 seconds
      // This can be direct code, or call to some other function

    $('#alert').hide();

     }, 3000);