jquery 中hover与position:absolute;一起用时在IE的bug

解决方案:一、添加背景background:#f00;兼容所有浏览器的透明度:

    •  filter:alpha(opacity=50);  
    •       -moz-opacity:0.5;  
    •       -khtml-opacity: 0.5;  
    •       opacity: 0.5;

二、把hover改为mouseover和mouseout来使用。

原文地址:https://www.cnblogs.com/nc-blog/p/3963976.html