clearInterval(this.time);//这里的this。指的是什么。没有这个变量啊。
A[i].onmouseover=function()
{
// clearInterval(this.time);
var This=this;
This.time=setInterval(function()
{
This.style.width=This.offsetWidth+8+"px";
if(This.offsetWidth>=160)
{
clearInterval(This.time);
}
},30);
}