jQuery 选项卡 - 测试是否已加载

发布于 2024-08-21 03:50:37 字数 114 浏览 5 评论 0原文

我有一个在回发加载时显示的 jQuery 对话框。然而问题是,对话框在选定的选项卡设置在其后面之前出现,因此在对话框关闭之前会显示错误的选项卡。

有没有办法在调用对话框之前测试并等待选项卡完成设置?

I have a jQuery dialog that is displayed on postback load. The problem however is that the dialog appears before the selected tab is set behind it, so the wrong tab is shown until the dialog is closed..

Is there a way to test and wait until the tabs are finished setting up before invoking the dialog?

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

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

发布评论

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

评论(1

谷夏 2024-08-28 03:50:37

您可以从选项卡显示事件打开对话框

$('#tabs').tabs({
  show: function(){
    $('mydialog').dialog('open');
  }
});

You can open the dialog from the tabs show event

$('#tabs').tabs({
  show: function(){
    $('mydialog').dialog('open');
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文