博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery each使用
阅读量:5052 次
发布时间:2019-06-12

本文共 1489 字,大约阅读时间需要 4 分钟。

 

.MenuTitle {
width: 30px; height: 120px; font-size: 20px; padding-left: 10px; padding-top: 5px; /*background: url(image/index_x.png) repeat-x 0px -673px;*/ background-color:#FFCCDD; border: #ffbc66 1px solid; } .MenuContent {
width: 108px; font-size: 16px; padding: 20px 10px 20px 40px; border: #ffbc66 1px solid; }

 

 

 

 

jQuery

$(document).ready(function() {    $(".MenuPanel").each(function() {        $(this).children(".MenuContent").hide();    });    $(".MenuTitle").each(function() {        $(this).click(function() {            if ($(this).parents(".MenuPanel").children(".MenuContent").css("display") != "none") {                $(this).parents(".MenuPanel").children(".MenuContent").hide("fast");            } else {                $(".MenuPanel").each(function() {                    $(this).children(".MenuContent").hide();                });                $(this).parents(".MenuPanel").children(".MenuContent").show("fast");            }        });    });});

 

 

转载于:https://www.cnblogs.com/cart55free99/archive/2013/05/29/3107024.html

你可能感兴趣的文章
linux日常管理-系统进程查看工具-ps
查看>>
HandlerThread&Looper&MessageQueue
查看>>
ROM的一种写法
查看>>
VIM Taglist + ctags
查看>>
supervisord
查看>>
搭建spark+hadoop平台
查看>>
Linux上让MySQL不区分表名大小写的方法
查看>>
Linux文件管理_1
查看>>
steps1-->Struct2-控制器组件
查看>>
sql server中index的REBUILD和REORGANIZE的区别及工作方式
查看>>
sql server升级打补丁
查看>>
ubuntu10.04安装x264库
查看>>
772002画马尾
查看>>
PHP传值和传引用、传地址的区别
查看>>
【Leetcode】Search in Rotated Sorted Array II
查看>>
蓬佐错觉:蓬佐错觉
查看>>
Redis:目录
查看>>
[usaco3.3.2]shopping
查看>>
分享一下:2011回顾:20个将JavaScript推到极致的网站(转)
查看>>
作业5.2 对5.1内容的完善体会
查看>>