我继承了一个使用jQuery Quicksand 插件进行数据过滤的站点。
我在 IE10 中遇到了一些问题。过渡动画似乎没有触发。排序立即发生。此外,在排序完成后应该触发的回调函数不会触发。< IE10 和我测试过的所有其他浏览器中一切都很好。
控制台中没有错误,也没有任何关于失败的迹象。
有没有人找到问题的根源?
function testFunction(){
alert('test');
}
$('.button').click(function(e) {
$('.all').quicksand( $('.warm li'), {
duration: 1000,
attribute: 'id',
adjustHeight:false
},function(){
testFunction();
});
});