<script>
var i= 180;
$('.ecjia-store-list').on('click','.js-zk',function(){
$(this).parent().prev('.fuwu-info').slideToggle();
if($(this).children('span').text()=='展开'){
$(this).children('span').text('收起');
$(this).children('img').transition({ rotate: i+'deg' });
}else{
$(this).children('span').text('展开');
$(this).children('img').transition({ rotate: i+'deg' });
}
i = i+180;
})
</script>
源码是这样的 现在报错 $(...).children(...).transition is not a function 请问为什么
ahchenxi2008
相关分类