使用 Jquery $(select) 排除链接

发布于 2024-12-16 17:41:39 字数 1183 浏览 3 评论 0原文

我正在使用 ContentFlow 作为图像库,当图像在流中居中时,它会变成 .活动。我有以下函数可以在缩略图变为 .active 时启用 PrettyPhoto 灯箱,但当链接缩略图(这是一个文件夹)变为活动状态时,我需要排除指向其他图像库的链接。

这是我当前的 PrettyPhoto 代码:

currentLink         : '.item.active',
currentFolder       : '.folder',
currentImg          : '.item.active .content'



function initCBox(){
    var img1 = $(select.currentLink).attr('href');
    var label = $(select.currentImg).attr('alt');
    var desc = $.map( $('.item.active .caption')[0].childNodes, function(val,i) {
        if (val.nodeType === 3) {
            return val.data;
        }
    }).join('');
    $.prettyPhoto.open(img1,label,desc);
}

我试图使用不排除文件夹,这样:

function initCBox(){
    var img1 = $(select.currentLink).not('currentFolder').attr('href');
    var label = $(select.currentImg).attr('alt');
    var desc = $.map( $('.item.active .caption')[0].childNodes, function(val,i) {
    if (val.nodeType === 3) {
            return val.data;
        }
    }).join('');
    $.prettyPhoto.open(img1,label,desc);
}

它不起作用,所以任何帮助将不胜感激。

I am using ContentFlow for an image gallery and when the image centers in the flow it becomes .active. I have the following function to enable a PrettyPhoto lightbox when a thumbnail image becomes .active but I need to exclude links to additional image galleries when the the link thumbnail ( which is a folder) becomes active.

This is my current code for PrettyPhoto:

currentLink         : '.item.active',
currentFolder       : '.folder',
currentImg          : '.item.active .content'



function initCBox(){
    var img1 = $(select.currentLink).attr('href');
    var label = $(select.currentImg).attr('alt');
    var desc = $.map( $('.item.active .caption')[0].childNodes, function(val,i) {
        if (val.nodeType === 3) {
            return val.data;
        }
    }).join('');
    $.prettyPhoto.open(img1,label,desc);
}

I am trying to use not to exclude the folders as such:

function initCBox(){
    var img1 = $(select.currentLink).not('currentFolder').attr('href');
    var label = $(select.currentImg).attr('alt');
    var desc = $.map( $('.item.active .caption')[0].childNodes, function(val,i) {
    if (val.nodeType === 3) {
            return val.data;
        }
    }).join('');
    $.prettyPhoto.open(img1,label,desc);
}

It's not working so any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文