直接上code
<script type="text/javascript"> $(function () { $('.spanfolder').click(function () { if(typeof($(this).siblings('.divfolder').css('background-position')) != 'undefined')//IE8下为undefined { if ($(this).siblings('.divfolder').css('background-position') == "-80px -3px") { $(this).siblings('.divfolder').css('background-position', '-64px -25px'); $(this).css('background-image', 'url(images/folder.gif)'); } else { $(this).siblings('.divfolder').css('background-position', '-80px -3px'); $(this).css('background-image', 'url(images/folder-closed.gif)'); } } else { if ($(this).siblings('.divfolder').css('background-positionX') == "-80px") { $(this).siblings('.divfolder').css('background-position', '-64px -25px'); $(this).css('background-image', 'url(images/folder.gif)'); } else { $(this).siblings('.divfolder').css('background-position', '-80px -3px'); $(this).css('background-image', 'url(images/folder-closed.gif)'); } } $(this).siblings('ul').slideToggle('fast'); }); }); </script>