jQuery Cycle 插件回调错误

发布于 2024-09-27 04:37:28 字数 391 浏览 1 评论 0原文

我无法获得之前&回调后即可使用 jQuery 的循环插件!

我不确定出了什么问题,我什至尝试使用文档中的示例代码。

这是代码:

$(document).ready(function(){

    function onBefore() { alert('before'); }

    $('.slideshow').cycle({
        before: 'onBefore'
    });
});

它抛出一个错误:“错误:opts.before[0].apply不是一个函数”

并且在chrome中:“Uncaught TypeError:Object onBefore没有方法'apply'”

发生了什么!?

I can't get before & after callbacks to work with the cycle plugin for jQuery!

I'm not sure what's going wrong, i even tried using the sample code from the documentation.

Here's the code:

$(document).ready(function(){

    function onBefore() { alert('before'); }

    $('.slideshow').cycle({
        before: 'onBefore'
    });
});

and it throws an error: "Error: opts.before[0].apply is not a function"

and in chrome: "Uncaught TypeError: Object onBefore has no method 'apply'"

what is happening!?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

知足的幸福 2024-10-04 04:37:28

该错误是因为 .apply() 是函数上的方法,而不是字符串上的方法...并且 'onBefore' 是一个字符串。相反,不要使用字符串...使用直接引用,如下所示:

$(document).ready(function(){    
    function onBefore() { alert('before'); }    
    $('.slideshow').cycle({
        before: onBefore
    });
});

或匿名函数:

$(function(){
    $('.slideshow').cycle({
        before: function() { alert('before'); }
    });
});

The error is because .apply() is a method on functions, not on strings...and 'onBefore' is a string. Instead, don't use a string...use a direct reference, like this:

$(document).ready(function(){    
    function onBefore() { alert('before'); }    
    $('.slideshow').cycle({
        before: onBefore
    });
});

Or an anonymous function:

$(function(){
    $('.slideshow').cycle({
        before: function() { alert('before'); }
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文