1.利用jQuery链式操作一句话完成菜单显隐展示
$('.c1').click(function () { $(this).children().removeClass('hide').parent().siblings().children().addClass('hide');})