Jquery - 将 img 标题添加到缩略图

发布于 2024-12-06 15:15:19 字数 276 浏览 1 评论 0原文

我在从滑块中的图像中抓取标题标签并将其插入页面上的其他位置时遇到问题。它仅从第一张图像中获取第一个标题,而不是后续图像。

我的脚本:

var imgTitle = $('.nivoSlider img').attr('title')

$('a.nivo-control').append('<p>' + (imgTitle) + '</p>');

我知道我必须在某个地方使用 .each 但我不知道在哪里。

谢谢

I'm having problems grabbing the title tag from an image in a slider and inserting it somewhere else on my page. It's only grabbing the first title from the first image and not the subsequent ones.

My script:

var imgTitle = $('.nivoSlider img').attr('title')

$('a.nivo-control').append('<p>' + (imgTitle) + '</p>');

I know I have to use .each someplace but I don't know where.

Thanks

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

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

发布评论

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

评论(2

ゞ记忆︶ㄣ 2024-12-13 15:15:19

使用 .map() 获取标题数组。然后在调用 .each() 时使用索引参数来获取相应的标题:

var titles = $('.nivoSlider img').map(function() {
    return this.title;
}).get();
$('a.nivo-control').each(function(i) {
    $(this).append("<p>" + titles[i] + "</p>");
});

Use .map() to get an array of titles. Then use the index parameter in your call to .each() to get the corresponding title:

var titles = $('.nivoSlider img').map(function() {
    return this.title;
}).get();
$('a.nivo-control').each(function(i) {
    $(this).append("<p>" + titles[i] + "</p>");
});
抱着落日 2024-12-13 15:15:19

试试这个例子:

$('.nivoSlider img').each( function() {
    alert($(this).attr('title'));
});

我想你会得到所有的图像标题属性

Try this for example:

$('.nivoSlider img').each( function() {
    alert($(this).attr('title'));
});

I think you will get all the images title attributes

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