我有一個jquery選項卡容器,其中有兩個選項卡。現在我想要的是最初的第二個選項卡將被禁用。點擊第一個標籤第二個標籤上的按鈕將被啓用並自動打開。啓用禁用jquery選項卡
<script type="text/javascript">
$(document).ready(function() {
//When page loads...
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active ID content
return false;
});
});
</script>
<div class="tab-wrapper" id="tab-wrapper">
<div class="tab-header">
<ul class="tabs">
<li><a href="#tab1">overview</a></li>
<li><a href="#tab2">details</a></li>
</ul>
</div>
<div class="tab_container">
<div id="tab1" class="tab_content">
here is the list of the overview
</div>
<div id="tab2" class="tab_content">
Particular Details
</div>
</div>
</div>
沒錯,這是規定。但我沒有使用默認的jquery選項卡,在我的情況下tabLinks.eq(0)或tabLinks.eq(1)不起作用。那麼我應該如何選擇第二個標籤呢? – Krisanu 2011-04-14 11:13:23
沒有任何默認的jQuery選項卡功能,除非您使用jQuery UI選項卡,但有時這是過度殺傷。 'tabLinks'只是一個我設置的包含選擇器$('#tabs a')的元素的變量,所以我不必重複調用此選擇器。如果您願意,可以採用一種緩存方式。 '.eq()'只是過濾元素的另一種方式,類似於':first',從0開始表示第一個元素(http://api.jquery.com/eq/)。 我修改了這個例子來使用你的標記,所以也許它會讓你更有意義:http://jsbin.com/ijoco5/2/ – amustill 2011-04-14 11:35:10
thanx,老兄。它的工作原理 – Krisanu 2011-04-14 13:45:05