您现在的位置是:首页 > 电脑技术查询 > web开发

jquery的animate动画里的opacity属性不支持ie678如何解决

编辑:chaxungu时间:2022-10-10 23:23:45分类:web开发

jquery的animate动画里的opacity属性不支持ie678怎么解决
jquery的animate动画里的opacity属性不支持ie678怎么解决
------解决思路----------------------
支持啊,为什么不支持。。


<scripttype="text/javascript"src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.2.min.js"></script>
<divid="dv"style="border:solid1px#000;background:#eee;width:300px;height:300px"></div>
<script>
$(function(){
$('#dv').animate({opacity:0},2000);
});
</script>
------解决思路----------------------
jquery做了兼容的
------解决思路----------------------
jquery版本要用1.xx的,别用2.xx的,
2.xx不支持ie678