这很奇怪,我不能让它停止发生。
这是相关代码。我正在使用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>
答案 0 :(得分:1)
从<br/>
中删除那些结尾<li>
的内容。他们不应该在那里。
<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>
此处a fiddle。