第一个function有效果复制第二个修改后总显示第二个有错误无法显示效果
<script type="text/javascript" src="images/jquery-1.2.6.min.js"></script>
<script>
$(function()
{
$("a").hover(
function()
{
$(this).stop().animate({"width":"160px"},200);
}
function()
{
$(this).stop().animate({"width":"120px"},200);
}
)
}
)
</script>