0
我正在使用此解決方案以具有multiple tabs in one page。放置在底部的jQuery選項卡控件不起作用
$(".tab_content").not(':first-child').hide();
var tabs = $('.tabs li');
tabs.filter(':first-child').addClass('active');
tabs.click(function() {
var current = $(this);
if(!current.hasClass('active')){
current.addClass('active').siblings().removeClass('active');
var activeTab = current.find("a").attr("href");
current.parent().next().children().hide().filter(activeTab).fadeIn();
}
return false;
});
我需要在選項卡內容後放置選項卡控件。 但它不會工作。如果選項卡控件放在選項卡內容之前,它可以正常工作。 你能幫我嗎?
這裏是我的jsfiddle:
你有相同的多個元素ID。這是一個沒有沒有, – lbstr