在Selector上调用jQuery函数

时间:2014-12-11 10:04:24

标签: javascript jquery html css

我遇到了一个问题,我试图在选择器上调用函数,并使用jQuery编辑/添加类到该选择器中的元素。

以下是我的代码:

(function($) {
    $(document).on('click', '.one a.button', function(){
        $('.two').loadQuestions();
    });
})(jQuery);
function loadQuestions( $ ) {
    $(this).addClass('active');
    $(this).children().addClass('transition-in');
    $(this).find('.tilt').delay(100).textillate({ 
        in: { effect: 'fadeInLeft' } 
});

它一直给我这个错误:

undefined is not a function - in regards to:
    $('.two').loadQuestions();

1 个答案:

答案 0 :(得分:2)

您正在使用loadQuestions作为插件。为此,您需要将其附加到$.fn

$.fn.loadQuestions = function(options) {
    $(this).addClass('active');
    $(this).children().addClass('transition-in');
    $(this).find('.tilt').delay(100).textillate({ in: { effect: 'fadeInLeft' } });
    return this; // important
});

或将其用作正常功能

function loadQuestions(that) {
    that.addClass('active');
    that.children().addClass('transition-in');
    that.find('.tilt').delay(100).textillate({ in: { effect: 'fadeInLeft' }}); 
});
loadQuestions($('.two')); // call it