gpt4 book ai didi

javascript - 使插件特定于元素

转载 作者:行者123 更新时间:2023-11-30 05:44:56 25 4
gpt4 key购买 nike

我有以下 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);

};
});
});

谁能帮帮我。谢谢

最佳答案

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);
};
});
});

关于javascript - 使插件特定于元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18535277/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com