Tag: 页面加载

jQuery:List扩展页面加载

我一直在寻找一些非常简单的东西: 如何在页面加载时使用动画扩展侧面导航 ,但我通常去的所有教程网站似乎都没有。 我能找到的最接近的是这个jQuery示例: http : //codeblitz.wordpress.com/2009/04/15/jquery-animated-collapsible-list/ 我已经成功地删除了列表: $(function(){ $(‘li’) .css(‘pointer’,’default’) .css(‘list-style’,’none’); $(‘li:has(ul)’) .click(function(event){ if (this == event.target) { $(this).css(‘list-style’, (!$(this).children().is(‘:hidden’)) ? ‘none’ : ‘none’); $(this).children().toggle(‘slow’); } return false; }) .css({cursor:’pointer’, ‘list-style’:’none’}) .children().hide(); $(‘li:not(:has(ul))’).css({cursor:’default’, ‘list-style’:’none’}); }); Collapsable List Demo A – F G – M George Kent Technology Centre Hampshire Park George Kent Technology Centre […]