复制代码 代码如下: <BR>.tab <BR>{ <BR>background-color: #FAFAFA; <BR>margin: 5px 8px; <BR>padding: 5px 10px; <BR>} <BR>.tab p span <BR>{ <BR>background-color: #EFEFEF; <BR>border: 1px solid #CCCCCC; <BR>cursor: pointer; <BR>margin-right: 6px; <BR>padding: 2px 5px; <BR>} <BR>.tab p span.current <BR>{ <BR>background-color: #FAFAFA; <BR>border-bottom-color: #fafafa; <BR>} <BR>.tab p <BR>{ <BR>border-bottom: 1px solid #CCCCCC; <BR>font-weight: bold; <BR>padding: 0 10px 2px; <BR>} <BR>.tab li <BR>{ <BR>border-bottom: 1px dotted #CCCCCC; <BR>padding-bottom: 3px; <BR>margin: 5px 0; <BR>} <BR>.tab .mhot, .tab.allhot <BR>{ <BR>display: none; <BR>} <BR> <BR>$(document).ready(function() { <BR>$(".tab span:first").addClass("current"); //为第一个SPAN添加当前效果样式 <BR>$(".tab ul:not(:first)").hide(); //隐藏其它的UL <BR>$(".tab span").mouseover(function() { <BR>$(".tab span").removeClass("current"); //去掉所有SPAN的样式 <BR>$(this).addClass("current"); <BR>$(".tab ul").hide(); <BR>$("." + $(this).attr("id")).fadeIn('slow'); <BR>}); <BR>}); <BR> tab1 tab2 tab3 脚本之家 www.jb51.net 我和我 一花一世办 一草一天堂 阿里巴巴 阿里巴巴 一草一天堂 我和我的祖国 最爱的地方 演示代码 http://demo.jb51.net/js/jquery_tab/index.htm