我正在使用循环插件在显示幻灯片之前和之后绑定一些函数,这可以使用before
和after
回调正常工作,但是当插件最初加载时也会触发函数,这是代码的简化版本:
$(function() {
$('.slider').cycle({
before : function() {
alert('this shouldn\'t appear on cycle load');
},
after: function() {
alert('this shouldn\'t appear on cycle load');
}
});
});
例如,请参阅JS Fiddle。警报会在页面加载后立即显示,也会在每次幻灯片转换之前和之后显示,是否有办法阻止此操作?
提前致谢。