jQuery UI 选项卡位于彼此下方约 50% 的高度

发布于 2024-12-06 14:20:35 字数 1400 浏览 2 评论 0原文

这很奇怪,我无法让它停止发生。

这是相关代码。我正在使用 Google CDN 主机来实现 UI-lightness 主题。

<div id="prof_div">
    <ul>
        <li><a href="#prof_home">Profile</a></li><br/>
        <li><a href="#prof_details">Details</a></li><br/>
        <li><a href="#prof_settings">Settings</a></li><br/>
    </ul>

这是唯一相关的 HTML。这是 jQuery/JavaScript

    $(document).ready(function() {  
        $('#prof_div').tabs({ 
            fx: { height: 'toggle', opacity: 'toggle' } 
        });
    }); 

,它的显示如下:

TAB 1
      TAB 2
            TAB 3

而不是这样:

TAB 1 - TAB 2 - TAB 3

我根本没有对它们起作用的自定义 CSS(我什至将样式表清空以进行检查)。

知道为什么会发生这种情况吗?如果需要的话我会发布屏幕截图。

谢谢! :)

编辑

这是我的 CDN 请求

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/ui-lightness/jquery-ui.css" type="text/css" media="all" />
<script type="text/javascript" src="https://www.google.com/jsapi?key=very long string"></script>

<script type="text/javascript" src="/JSFunctions.js"></script>
<script type="text/javascript">
google.load("jquery", "1.6.4");
google.load("jqueryui", "1.8.16");
....
</script>

This is quite odd, and I can't get it to stop happening.

Here's the relevant code. I'm using a Google CDN host for the UI-lightness theme.

<div id="prof_div">
    <ul>
        <li><a href="#prof_home">Profile</a></li><br/>
        <li><a href="#prof_details">Details</a></li><br/>
        <li><a href="#prof_settings">Settings</a></li><br/>
    </ul>

That's the only relevant HTML. Here's jQuery/JavaScript

    $(document).ready(function() {  
        $('#prof_div').tabs({ 
            fx: { height: 'toggle', opacity: 'toggle' } 
        });
    }); 

And it's displaying like this:

TAB 1
      TAB 2
            TAB 3

Instead of like this:

TAB 1 - TAB 2 - TAB 3

I have no custom CSS acting on them at all (I even blanked my stylesheets to check).

Any idea why this is happening? I'll post a screenshot if necessary.

Thanks! :)

EDIT

Here's my CDN requests

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/ui-lightness/jquery-ui.css" type="text/css" media="all" />
<script type="text/javascript" src="https://www.google.com/jsapi?key=very long string"></script>

<script type="text/javascript" src="/JSFunctions.js"></script>
<script type="text/javascript">
google.load("jquery", "1.6.4");
google.load("jqueryui", "1.8.16");
....
</script>

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

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

发布评论

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

评论(1

酒与心事 2024-12-13 14:20:35

  • 中删除那些以
    结尾的内容。他们不应该在那里。
  • <div id="prof_div">
    <ul>
        <li><a href="#prof_home">Profile</a></li><br/>
        <li><a href="#prof_details">Details</a></li><br/>
        <li><a href="#prof_settings">Settings</a></li><br/>
    </ul>
    

    这是一把小提琴

    Remove those ending <br/>s from your <li>s. They shouldn't be there.

    <div id="prof_div">
    <ul>
        <li><a href="#prof_home">Profile</a></li><br/>
        <li><a href="#prof_details">Details</a></li><br/>
        <li><a href="#prof_settings">Settings</a></li><br/>
    </ul>
    

    Here's a fiddle.

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