为什么在火狐浏览器里没有反应?
<script type="text/javascript">
window.onload = function(){
var oMove = document.getElementById("move");
var aLis = document.getElementsByTagName("a");
for(var i=0;i< aLis.length;i++){
aLis[i].onmouseover = function(){
var _this = this.getElementsByTagName("i")[0];
moreMove(_this,{top:-25,opacity:0},function(){
_this.style.top = 13 + "px";
moreMove(_this,{top:3,opacity:100});
});
}
}
}
</script>