使用.off删除事件处理程序



我无法使用。off来删除事件处理程序。

一旦一个框被点击,我需要删除该框的事件处理程序,目前我已经制作了钩子"。然后删除类,并尝试删除事件处理程序,然后将事件处理程序应用到所有类为"。box"的框。

        $('.clickable').off('click','**').on("click", function(event){
        if( !$('.box').is(':animated') ) {
            var position = $(this).position()
            ,   targetPosition =  $('.target').position();
            $(this)
                .clone() //clone element
                .addClass('cloned') //add class to cloned element
                .css({
                    'position' : 'absolute'
                ,   'top' : position.top 
                ,   'left' : position.left 
                })
                .appendTo('body'); //append to the document
                animate(position,targetPosition);
                $(this)
                    .removeClass('clickable')
                    .addClass('notActive');
        };
    });

感谢大家的建议和帮助,如果有人想看到最终的演示"工作"在这里是一个小提琴

工作版本

修正你的代码,尚未测试,但应该工作

$(document).on("click", '.clickable', function(event){
    if( !$('.box').is(':animated') ) {
        var position = $(this).position();
        var targetPosition =  $('.target').position();
        $(this)
            .clone() //clone element
            .addClass('cloned') //add class to cloned element
            .css({
                'position' : 'absolute'
            ,   'top' : position.top 
            ,   'left' : position.left 
            })
            .appendTo('body'); //append to the document
            animate(position,targetPosition);
            $(this)
                .removeClass('clickable')
                .addClass('notActive')
                .off('click');
    };
}); 

相关内容

  • 没有找到相关文章

最新更新