jQuery UI - 页面加载样式延迟

发布于 2024-12-10 22:06:06 字数 654 浏览 0 评论 0原文

我正在使用 jQuery UI 选项卡小部件来设计我的页面样式:

<div id="tabs">
    <ul>
        <li><a href="#tab-1">Tab 1</a></li>
        <li><a href="#tab-2">Tab 2</a></li>
    </ul>

    <div id="tab-1">
       ...
    </div>

    <div id="tab-2">
       ...
    </div>
</div>

<script type="text/javascript">
    $(function() {
        $('#tabs').tabs();
    });
</script>

我遇到的问题是,当我第一次加载页面一小会儿时,我看到页面在 jquery 选项卡函数有机会运行之前未设置样式。我的意思是,不到一秒钟,我就看到一个无序列表,其中包含选项卡 1、选项卡 2 等的链接。

有没有办法消除这种延迟?我是否应该将类添加到 jQuery UI 最终添加的标记中以摆脱这个问题?

I'm using the jQuery UI tabs widget to style my page:

<div id="tabs">
    <ul>
        <li><a href="#tab-1">Tab 1</a></li>
        <li><a href="#tab-2">Tab 2</a></li>
    </ul>

    <div id="tab-1">
       ...
    </div>

    <div id="tab-2">
       ...
    </div>
</div>

<script type="text/javascript">
    $(function() {
        $('#tabs').tabs();
    });
</script>

The problem I have is when I first load the page for a brief moment, I see the page unstyled before the jquery tabs function has had a chance to run. What i mean is for less than a second I see an unordered list with links for Tab 1, Tab 2, etc.

Is there a way to get rid of this delay? Should I add the classes to my markup that jQuery UI ends up adding in order to get rid of this?

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

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

发布评论

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

评论(2

只是在用心讲痛 2024-12-17 22:06:06

DOM 被加载,然后你的 jQuery 被执行,这是你看到的第二个延迟。您可以将 style="display: none" 添加到 tabs 元素,然后:

$(function() {
$('#tabs').show();
$('#tabs').tabs();
});

The DOM is loaded and then your jQuery is executed, which is the second delay you see. You can add style="display: none" to your tabs element, then:

$(function() {
$('#tabs').show();
$('#tabs').tabs();
});

伤感在游骋 2024-12-17 22:06:06

您可以默认隐藏选项卡,并在

您的 HTML 中调用选项卡函数后显示它们:

<div id="tabs" style="visibility:hidden;">

在您的 javascript 代码中

 $(function() {
    $('#tabs').tabs().show();
});

you could hide your tabs by default and display them after you called the tabs function,

in your HTML:

<div id="tabs" style="visibility:hidden;">

in your javascript code

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