這個函數不被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");
});
}
jquery對瀏覽器的兼容問題
函數式編程
2018-12-07 06:37:22