控制我的tabcontainer的Jquery脚本给出了“对象预期”运行时错误。 老实说,我找不到原因:
$(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 :(得分:3)
我想您要从选择器中删除var
activeTab.fadeIn(); //Fade in the active ID content
如果您收到错误@ $(document).ready(function() {
,请记得包含jQuery脚本。
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
答案 1 :(得分:3)
您的代码适用于此html页面;
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script>
$(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>
</head>
<body>
<ul class="tabs">
<li><a href="#one">Tab One</a></li>
<li><a href="#two">Tab Two</a></li>
</ul>
<div id="one" class="tab_content">Tab One Content</div>
<div id="two" class="tab_content">Tab Two Content</div>
</body>
</html>
所以它必须是你展示的代码以外的其他东西吗?
答案 2 :(得分:1)
我第一次错了编辑: - )
你的问题是这些问题:
var activeTab = $(this).find("a").attr("href"); //This will return a string value
$(activeTab).fadeIn(); //Meaning this will fail
您需要更改activeTab的选择器以获取要显示的.tab_content。
我假设href值包含在某处的.tab_content中。