ttp://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
http://www.w3.org/1999/xhtml" >
.tabs
{
list-style. none;
padding: 0;
margin: 0px;
border-bottom: 1px solid silver;
width: 619px;
border-top:0px solid silver;
}
.tabs li
{
float: left;
background: #e0e0e0;
border: 1px solid silver;
border-left: none;
margin: 0px;
}
ul.tabs li a
{
text-decoration: none;
padding: 0 20px;
}
a
{
display: block;
color:Black;
}
.li_background
{
background-color: White;
border-bottom: 1px solid #fff;
}
.tab_container
{
border-left: 1px solid gray;
border-right: 1px solid gray;
border-bottom: 1px solid gray;
border-top: 1px solid gray;
height: 500px;
float: left;
clear: both;
width: 841px;
}
a:hover
{
background-color: White;
color:Red;
}
a:visited
{
color: Black;
}
.tabs
{
list-style. none;
padding: 0;
margin: 0px;
border-bottom: 1px solid silver;
width: 619px;
border-top:0px solid silver;
}
.tabs li
{
float: left;
background: #e0e0e0;
border: 1px solid silver;
border-left: none;
margin: 0px;
}
ul.tabs li a
{
text-decoration: none;
padding: 0 20px;
}
a
{
display: block;
color:Black;
}
.li_background
{
background-color: White;
border-bottom: 1px solid #fff;
}
.tab_container
{
border-left: 1px solid gray;
border-right: 1px solid gray;
border-bottom: 1px solid gray;
border-top: 1px solid gray;
height: 500px;
float: left;
clear: both;
width: 841px;
}
a:hover
{
background-color: White;
color:Red;
}
a:visited
{
color: Black;
}
$(document).ready(function() {
$(".tab_content").hide();
$(".tabs li").eq(0).find("a").addClass("li_background");
$(".tab_content").eq(0).show();
$(".tabs li").click(function() {
$(".tabs li").find("a").removeClass("li_background");
$(".tab_content").hide();
$(this).find("a").addClass("li_background");
$(".tabs li").find("a").removeClass("li_background");
$(".tab_content").hide();
$(this).find("a").addClass("li_background");
var activeTab = $(this).find("a").attr("href");
$(activeTab).fadeIn("slow");
});
});
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/25284529/viewspace-692884/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/25284529/viewspace-692884/