不知道哪里错了,效果出不来
<script type="text/javascript" src="js/jquery-1.2.6.min.js"></script>
<script type="text/javascript">
$(function(){
$('a').hover(
function(){
$(this).stop().animate({"width":"160px"},200);
}
function(){
$(this).stop().animate({"width":"120px"},200);
}
))
})
</script>