如何设置警报消息超时?

时间:2019-05-01 09:42:14

标签: javascript php html

声明

如果用户未在15秒内关闭该框,我想在警报消息上设置超时时间。

<?php
    if (isset($_SESSION['message'])): ?>
     <div id="Alert" class="alert alert-<?=$_SESSION['msg_type']?> alert-dismissible fade show" role="alert">
          <button type="button" class="close" data-dismiss="alert"><span style="font-size:1em;">&times;</span></button>
          <center><?php echo $_SESSION['message'];?></center>
          <?php unset($_SESSION['message']); ?>
     </div>
<?php endif ?>

<script>
//set timeout here...
</script>

0 个答案:

没有答案