当前位置:Gxlcms > JavaScript > jquery 最简单的属性菜单

jquery 最简单的属性菜单

时间:2021-07-01 10:21:17 帮助过:5人阅读

1.0 创建 <UL> 菜单树! 并影藏 子选项!
2.0 加入!
代码如下:

$("li:has(ul)").click(
function (){$(this).children("ul").css("display")=='none'?$(this).children("ul").show("slow"):$(this).children("ul").hide("slow");
}
);

3.0 你完成了!

人气教程排行