jQuery UI无法正常工作? (特别是标签)

时间:2011-09-16 20:00:53

标签: javascript jquery html jquery-ui google-cdn

奇怪的问题。我看了一些类似的问题 - 他们的答案都没有解决我的问题。

它正在做所有正确的事情,而不是标签变得像他们想要的那样互动,他们只是表现出来。

我遗漏了尽可能多的不必要的代码,包括我的装饰CSS。

请随时向我询问其他信息。感谢您的观看。

这是我的头文件:

<link rel="stylesheet" type="text/css" href="/Include/styleSheetV2.css"/>
<link rel="stylesheet" type="text/css" href="/Include/StyleSheet.CSS"/>
<link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet"/>
<script type="text/javascript" src="https://www.google.com/jsapi?key=(Removed key for StackOverflow)"></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>

这是HTML代码

<div id="prof_div" class="sG_tabber">
    <ul class="sG_tabberNav">
        <li><a href="#prof_home">Profile Home</a></li>
        <li><a href="#prof_details">Details</a></li>
        <li><a href="#prof_settings">Settings</a></li>
    </ul>
    <div id="prof_home" class="sG_tabberTab">
        1   
    </div>
    <div id="prof_details" class="sG_tabberTab">
        2
    </div>
    <div id="prof_settings" class="sG_tabberTab">
        3
    </div>
</div>
<script type="text/javascript">
    $(document).ready(function() {  
        $('#prof_div > ul').tabs({ 
            fx: { height: 'toggle', opacity: 'toggle' } 
        });
    }); 
</script>

这是我的CSS代码(只有必要的位)

.ui-tabs-hide {  
    display: none;
}

1 个答案:

答案 0 :(得分:1)

尝试使用$("#prof_div").tabs()而不是#prof_div > ul