What to use instead of `toggle(…)` in jQuery > 1.8?

淺唱寂寞╮ 提交于 2019-11-26 05:49:51

问题


Now that toggle(...) was deprecated in jQuery 1.8 and then removed in jQuery 1.9

What could be used in general (aside from using the jQuery migrate script) instead of toggle(fn, fn2); thats has the same type of functionality?

Related question (asked about a specific case): What to use instead toggle?


I know that toggle() functionality was not removed, just the ability to add custom toggle functions (aside from the show/hide default functionality).


回答1:


Here is a simple implementation:

$.fn.toggleClick = function() {
    var methods = arguments;    // Store the passed arguments for future reference
    var count = methods.length; // Cache the number of methods 

    // Use return this to maintain jQuery chainability
    // For each element you bind to
    return this.each(function(i, item){
        // Create a local counter for that element
        var index = 0;

        // Bind a click handler to that element
        $(item).on('click', function() {
            // That when called will apply the 'index'th method to that element
            // the index % count means that we constrain our iterator between 0
            // and (count-1)
            return methods[index++ % count].apply(this, arguments);
        });
    });
};

and use it as

$('selector').toggleClick( function1, function2, ... );


来源:https://stackoverflow.com/questions/14382857/what-to-use-instead-of-toggle-in-jquery-1-8

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!