11.9

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()
})
})

 

posted @ 2021-11-10 17:25  王嘉尔最帅  阅读(20)  评论(0)    收藏  举报