我正在使用Flexslider bur的问题是Next / Prev。 IE中的按钮功能不正常。 Mozilla按预期工作的地方。
我将图像动态绑定到FlexSlider(MVC3.0)。
FlexSlider:jQuery FlexSlider v2.0(http://www.woothemes.com/flexslider/)
以下是启动滑块的代码:
$jq(window).load(function() {
$jq('.alternate-images').flexslider({
slideshow:false,
animation: "slide",
animationLoop: false,
itemWidth: 61,
itemMargin:5,
controlsContainer:".alternate-images",
controlNav:false,
mousewheel:true,
move:2,
animationDuration: 0,
directionNav: true,
added:function(){
slideCheck();
},
removed:function(){
slideCheck();
}
});
});
在IE中克服这个问题的任何想法?
谢谢