0
我試圖隱藏其中顯示當前選項卡,並使用基於jQuery的HREF淡入新標籤...隱藏當前標籤並顯示基於href的下一個標籤?
這裏是我的HTML
<div id="leader">
<ul id="llist">
<li class="t current"><a href="#solutions"><span>sage solutions</span></a></li>
<li class="m"><a href="#management"><span>credit mangement solutions</span></a></li>
<li class="b"><a href="#thirdparty"><span>third party additions</span></a></li>
</ul>
<div id="lcontent">
<div id="solutions" class="tab">
<h2>Title</h2>
Description
</div>
<div id="management" class="tab">
<h2>Title</h2>
Description
</div>
<div id="thirdparty" class="tab">
<h2>Title</h2>
Description
</div>
</div>
</div>
與jQuery的(這也滑梯的圖像到選中的標籤)
$('#leader #llist li').click(function() {
$('#leader #llist li').removeClass('current');
var thisTop = $(this).offset().top;
$('.pointer').animate({'top': thisTop});
$(this).addClass('current');
$('.tab').fadeOut();
});
目前的選項卡目前淡出或淡出列表中的鏈接時點擊...任何幫助,將不勝感激。
什麼問題? – 2010-12-10 19:46:17
那麼......有什麼問題? – 2010-12-10 19:46:27
我試圖淡出標籤,當用戶點擊其中一個鏈接基於其ID(因此使用#href),我認爲這將是最好的方式開始 – Andy 2010-12-10 19:48:21