当前位置:主页 > 网页前端 > jquery >

jquery 最简单的属性菜单

时间:2021-06-10 08:23:04 | 栏目:jquery | 点击:

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 你完成了!

您可能感兴趣的文章:

相关文章