JQ最简单最易懂的淡入淡出选项卡
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQ最简单最易懂的淡入淡出选项卡相关的知识,希望对你有一定的参考价值。
$(function(){
$(".nav dd").click(function(){
$(‘.nav dd‘).eq($(this).index()).addClass("active").siblings().removeClass("active"); //选项卡选择一个
$(".div1 ul li").hide(function(){
$(this).fadeOut(‘slow‘);
}).eq($(this).index()).show(function(){
$(this).fadeIn(‘slow‘); //图片淡入淡出
});
})
最后DVA镇楼
以上是关于JQ最简单最易懂的淡入淡出选项卡的主要内容,如果未能解决你的问题,请参考以下文章