gpt4 book ai didi

javascript - 将对象传递给原型(prototype)回调

转载 作者:行者123 更新时间:2023-12-02 19:23:48 24 4
gpt4 key购买 nike

我正在使用Nivo Slider plugin对于 jQuery。该插件允许您在插件原型(prototype)参数内的对象中提供一些回调,例如

$('.slider').nivoSlider({
afterLoad: control_responses(this, false),
beforeChange: control_responses(this, false),
afterChange: control_responses(this, false)
});

在我将 this 传递给 control_responses() 的地方,我实际上想发送 $('.slider') 的当前迭代this 当前指的是窗口对象

如何将 $('.slider') 的当前迭代传递给我的回调函数?

最佳答案

您正在调用 control_responses 函数并将返回值放入对象中。将函数放入对象中,以便在调用回调函数时调用 control_responses 函数:

$('.slider').nivoSlider({
afterLoad: function() { control_responses(this, false); },
beforeChange: function() { control_responses(this, false); },
afterChange: function() { control_responses(this, false); }
});

关于javascript - 将对象传递给原型(prototype)回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12247015/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com