我有一个转发器控件。在每个元素/记录中,我有一个带有2个选项卡的选项卡式界面。我正在使用Jquery实现tab功能。但每次我点击页面上的任何标签时,只有第一个元素/记录的标签正在切换。请告诉我如何实现这一目标。
<ul class="tabs">
<li><a href="#tab1">Gallery</a></li>
<li><a href="#tab2">Submit</a></li>
</ul>
<div class="tab_container">
<div id="tab1" class="tab_content">
<!--Content-->
</div>
<div id="tab2" class="tab_content">
<!--Content-->
</div>
</div>
$(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;
});
});
答案 0 :(得分:1)
由于您使用ids
标记转发器中的内容div。所有转发器元素都将具有理智的ID,因此您的逻辑不会。试试这个
$(document).ready(function() {
//When page loads...
$(".tab_content").hide(); //Hide all content
$("ul.tabs > li:first-child").addClass("active").show(); //Activate first tab
$(".tab_content:first-child").show(); //Show first tab content
//On Click Event
$("ul.tabs > li").click(function() {
$(this).siblings().removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
var $tabContents = $(this).parent().next().children();
$tabContents.hide(); //Hide all tab content
// var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
//Use the index() method to get the tab to show
$tabContents.eq($(this).index()).fadeIn();
return false;
});
});
同时将anchor的href属性设置为javascript:void(0)
,否则当您单击选项卡时页面将滚动。