我知道这里有一些类似的问题,但我试图获得一个特定的值。
我正在研究 Flexslider http://www.woothemes.com/FlexSlider/并尝试向失去“flex-active-slide”类的幻灯片添加一些特殊功能。根据文档,我设法在幻灯片动画之前和之后插入我的函数。
// Callback API
start: function(){},
before: function(){
$('li.image').someFunction(); //this is where I need to trigger this event only to the li.image that's losing the flex-active-slide class
},
after: function() {
$('li.flex-active-slide').otherFunction(); //this is where the active class
},
正如您在上面的示例中看到的那样,我不需要为所有其他li.image
元素运行该函数,只需要为丢失 flex-active-slide 类的元素运行该函数。
我需要获取这个元素并用一个变量定义它,这样我才能正确运行函数li.image
,这对于性能优化目的也很有意义。
我很感激任何帮助。