2

次の js プラグインを使用して、要素の表示非表示イベントをキャッチします。しかし、私はそれを1つのdom要素のみに固有にしたい、つまり #div_loading_page

jQuery(function ($) {
    $.each(['show','hide'], function (i, ev) {
        var el = $.fn[ev];
        $.fn[ev] = function () {
                this.trigger(ev);
                el.apply(this, arguments);

        };
    });
});

誰でも助けてください。ありがとう

4

1 に答える 1

1
jQuery(function ($) {
    $.each(['show','hide'], function (i, ev) {
        var el = $.fn[ev];
        $.fn[ev] = function () {

            this.each(function () {
                if ( this.id == 'div_loading_page') {
                    $(this).trigger(ev);
                    return false; // break out of the loop
                }
            });

            el.apply(this, arguments);
        };
    });
});
于 2013-08-30T14:29:15.133 に答える