gpt4 book ai didi

jquery - 从 jquery.colorbox.js 中删除重复的图像

转载 作者:行者123 更新时间:2023-12-01 01:17:04 26 4
gpt4 key购买 nike

嘿,我遇到了一个问题,由于我缺乏 jquery 技能,我不知道如何解决。

我正在使用 jquery colorbox 作为图像库,问题是有一些重复的图像,我正在尝试将其删除。我什至不知道从哪里开始寻找...如果有人能给我一个关于从哪里开始的提示,我会非常喜欢它(ps - 这是我的生日)

我认为这是我需要删除重复项的地方,但就像我说的,我的 jquery 技能很糟糕

// Preloads images within a rel group
if (settings.preloading) {
preload = [
getIndex(-1),
getIndex(1)
];
while (i = $related[preload.pop()]) {
src = $.data(i, colorbox).href || i.href;
if ($.isFunction(src)) {
src = src.call(i);
}
if (isImage(src)) {
img = new Image();
img.src = src;
}

}
}

这也是我正在使用的文件的链接...希望这有帮助

http://www.taranmarlowjewelry.com/wp-content/plugins/jquery-colorbox/js/jquery.colorbox.js?ver=1.3.19

最佳答案

查看您的网站后,我对 colorbox 遇到了同样的问题...这会起作用

jQuery('document').ready(function($){
$(".wpcart_gallery a:first").removeClass("cboxElement");
jQuery(".wpcart_gallery img").click(function($){
jQuery(".wpcart_gallery a").addClass('cboxElement');
jQuery(this).closest('a').removeClass('cboxElement');
});
});

关于jquery - 从 jquery.colorbox.js 中删除重复的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12325628/

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