H3标题鼠标悬浮缩进效果 header中加入 代码: <script type="text/javascript"> $(document).ready(function(){ $("h3 a").hover(function(){ $(this).stop().animate({marginLeft:"10px"},300);} ,function(){ $(this).stop().animate({marginLeft:"0px"},300); }); }); </script> 感谢:Terminal™分享