我正在使用jquery标签显示一些内容,并且我需要在标签内制作一个链接才能打开另一个标签,我的jquery知识非常有限,所以我发布我的代码,所以你可以检查一下我能做什么?
这是jquery代码:
$(document).ready(function() {
//$(".tab_content").hide();
$(".tab_content").css({
'display':'block',
'position':'absolute',
'top':'-999em',
'left':'-999em'
});
//$(".tab_content:first").show();
$(".tab_content:first").css({
'top':'350px',
'left':'50px',
'width':'660px'
});
firstTabHeight = $(".tab_content:first").height();
$(".tab_content:first").parent().css('height',firstTabHeight);
$("#nav-portfolio ul li").click(function() {
$("#nav-portfolio ul li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
//$(".tab_content").hide(); //Hide all tab content
$(".tab_content").css({
'display':'block',
'position':'absolute',
'top':'-999em',
'left':'-999em'
});
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$(activeTab).hide();
//$(".tab_content").css({
// 'opacity':'0',
//});
//var tabHeight = $(activeTab).height();
//$('#colLeft').height(tabHeight);
$(activeTab).fadeIn(); //Fade in the active content
thisTabHeight = $(activeTab).height();
$(activeTab).css({
'display':'block',
'position':'relative',
'top':'0',
'left':'0',
'width':'660px'
});
activeTabHeight = $(activeTab).height();
$(".tab_content:first").parent().css('height',activeTabHeight);
return false;
});