我有这个脚本:
$("#teaser ul.buttons li").mouseover(function()
{
$("a",this).animate({ left: '0' },350);
}).mouseout(function()
{
$("a",this).animate({ left: '-11px' },350);
});
Run Code Online (Sandbox Code Playgroud)
但是当我现在盘旋在一个元素上时.鼠标悬停和鼠标移动继续.我该如何更改此脚本.那当我悬停一个元素.当我将鼠标悬停在元素上时,mouseout会启动.