我有以下 js 插件来捕捉元素的显示隐藏事件。但我想让它只针对一个 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);
};
});
});
谁能帮忙。谢谢