jQuery事件切换:
hover([over],out):
over:鼠标移到元素上要触发的函数
out:鼠标移出元素要触发的函数
out:当鼠标移到元素上或移出元素时触发执行的事件函数
选项卡增加或减少:
$(function(){
$(".top-list .title").click(function(){
$(this).addClass("active").siblings().removeClass("active");
var index=$(this).index();
$(".top-list-main ul").eq(index).show().siblings().hide()
})
})