jquery的选择器:
其中较为详细的请参考:http://www.imooc.com/learn/418
常见的DOM事件:
<script> $(function(){ $("#move a").mouseenter(function(){ $(this).find('i').animate({top:"-25x",opacity:"0"},300,function(){ $(this).css({top:"30px"}); $(this).animate({top:"20px",opacity:"1"},200) }) }) }) </script>