jQuery - 如何将属性 rel 添加到多个链接?

发布于 2024-10-28 12:26:24 字数 297 浏览 3 评论 0原文

到目前为止,这是我的代码:

$('#floorplans img').each(function() {
    $('#floorplans a').each(function() {
        $(this).attr('rel','lightbox'); 
    });
});

到目前为止,它运行良好,但我也需要它为 #gallery 做同样的事情。是否可以完成此任务,而不必为 #gallery 再次编写相同的代码?

谢谢你!

Here's my code so far:

$('#floorplans img').each(function() {
    $('#floorplans a').each(function() {
        $(this).attr('rel','lightbox'); 
    });
});

It works well so far, but I need it to do same thing for #gallery too. Is it possible to accomplish this without having to write the same code again for #gallery?

Thank you!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

じ违心 2024-11-04 12:26:24

是 - 使用多重选择器

Yes - use the multiple selector

剪不断理还乱 2024-11-04 12:26:24

不会

$('#floorplans img a, #gallery img a').attr('rel', 'lightbox');

做吗?

更新:我有“IMG”和“A”从后到前,应该是所有“A”,其中包含“#Div”内的“IMG”,如下所示:

$('#floorplans a:has(img), #gallery a:has(img)').attr('rel', 'lightbox')

Would

$('#floorplans img a, #gallery img a').attr('rel', 'lightbox');

not do?

Update: I had "IMG" and "A" back to front, should have been all "A" which contain "IMG" inside "#Div", like this:

$('#floorplans a:has(img), #gallery a:has(img)').attr('rel', 'lightbox')
御弟哥哥 2024-11-04 12:26:24

在没有看到您的标记的情况下,类似这样的事情可能会起作用:

$('#floorplans img, #gallery img').each(function() {
    $('a').each(function() {
        $(this).attr('rel','lightbox'); 
    });
});

HTH

更新:
我还是觉得这不对
您没有使用在外循环中选择的元素,因此它是多余的。
我认为您因此多次设置 rel attr 。
我还没有尝试过,但我认为你应该只使用一个循环,在其中选择具有图像的链接。

$('#floorplans a:has(img), #gallery a:has(img)').each(function() {
        $(this).attr('rel','lightbox'); 
});

Without having seen your markup, something like this may work:

$('#floorplans img, #gallery img').each(function() {
    $('a').each(function() {
        $(this).attr('rel','lightbox'); 
    });
});

HTH

Update:
I still don't think this is right,
you aren't using the elements youve selected in the outer loop so its redundant.
And I think you are setting the rel attr multiple times because of it.
I havent tried it but I think you should only be using one loop, where you select links that have an image.

$('#floorplans a:has(img), #gallery a:has(img)').each(function() {
        $(this).attr('rel','lightbox'); 
});
走走停停 2024-11-04 12:26:24

您可以定义函数并使用它,例如:

var addRel = function(selector) {
    $(selector).each(function() {
        $(this).attr('rel','lightbox'); 
    });
};

addRel('#floorplans a');
addRel('#gallery a');

You can define function and use it, like:

var addRel = function(selector) {
    $(selector).each(function() {
        $(this).attr('rel','lightbox'); 
    });
};

addRel('#floorplans a');
addRel('#gallery a');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文