这个函数不被IE6兼容吗?为什么我在IE6下无法正常运行
$(document).ready(function(){
$('.item.jt').hover(function(){
$(".cover", this).stop().animate({left:'100px'},{queue:false,duration:300});
$(".ifobox.s1").stop().animate({height: '300px', }, "slow");
}, function() {
$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
$(".ifobox.s1").stop().animate({height: '80px', }, "slow");
});
}
1 回答

斯蒂芬大帝
TA贡献1827条经验 获得超8个赞
animate 应该都是兼容的,也没什么 bug,
你先测试测试你的选择器,是否在 ie 6 下面选择到值了,
要不你提供一下完整的代码,帮你调试下 !
添加回答
举报
0/150
提交
取消