x 秒后 Jquery 销毁对话框

发布于 2024-09-03 15:59:46 字数 272 浏览 5 评论 0原文

如何在一定秒数后销毁对话框???

这是我的代码:

<script type="text/javascript">
 $(function() {
  $(".dialog-message").dialog({
   modal: true,
   buttons: {
    Ok: function() {
     $(this).dialog('close');
    }
   }
  });
 });

 </script>

How can I destroy a dialog box after a certaing amount of seconds?????

This is my code:

<script type="text/javascript">
 $(function() {
  $(".dialog-message").dialog({
   modal: true,
   buttons: {
    Ok: function() {
     $(this).dialog('close');
    }
   }
  });
 });

 </script>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

栖迟 2024-09-10 15:59:46
$(function() {
var dialog = $(".dialog-message").dialog({
    modal: true,
    buttons: {
        Ok: function() {
            $(this).dialog('close');
        }
    }
});

setTimeout(function(){
    dialog.dialog('destroy');
},5000); // 5 seconds
});
$(function() {
var dialog = $(".dialog-message").dialog({
    modal: true,
    buttons: {
        Ok: function() {
            $(this).dialog('close');
        }
    }
});

setTimeout(function(){
    dialog.dialog('destroy');
},5000); // 5 seconds
});
水中月 2024-09-10 15:59:46
 function destroyDialog() {
      $(".dialog-message.").dialog("destroy");
 }

 setTimeout("destroyDialog()", 1000);

这会在 1 秒、1000 毫秒后完成......

 function destroyDialog() {
      $(".dialog-message.").dialog("destroy");
 }

 setTimeout("destroyDialog()", 1000);

This does it after 1 second, 1000 milliseconds...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文