Soh Tanaka, :
$(document).ready(function() {
$(".tab_content").hide();
$("ul.tabs li:first").addClass("active").show();
$(".tab_content:first").show();
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active");
$(this).addClass("active");
$(".tab_content").hide();
var activeTab = $(this).find("a").attr("href");
$(activeTab).fadeIn();
return false;
});
});
, . , , , , . , , , , , tab_container .
:
$(".tab_content").hide();
, .
$("ul.tabs li:first").addClass("active");
$(".tab_content:first").show();
, , .
$("ul.tabs").each(function() {
$(this).find('li:first').addClass("active");
$(this).nextAll('.tab_container:first').find('.tab_content:first').show();
});
.click() , ul.tabs li . .
$("ul.tabs li").click(function() {
var cTab = $(this).closest('li');
cTab.siblings('li').removeClass("active");
cTab.addClass("active");
cTab.closest('ul.tabs').nextAll('.tab_container:first').find('.tab_content').hide();
var activeTab = $(this).attr("href");
$(activeTab).fadeIn();
return false;
});
activeTab , , ID.
. : http://jsfiddle.net/uyvUZ/1/
, -: http://jsfiddle.net/uyvUZ/2/