使用 jQuery 将图像的 alt 值动态写入为文本

发布于 2024-12-04 13:41:21 字数 245 浏览 0 评论 0原文

尝试编写一个小函数,用图像的替代文本更新paragraph.active 类是正在查看的图像。我将在 doc.ready 和一些 .click 事件下启动此函数。这是我没有结果的结果:

$("#title").text($('.z.active').attr('alt', ''));

感谢您的帮助!

Trying to write a small function that updates a paragraph with an image's alt text. the .active class is the image being viewed. I'll launch this function on doc.ready and under a few .click events. Here's what i've got with no results:

$("#title").text($('.z.active').attr('alt', ''));

Thanks for your help!

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

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

发布评论

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

评论(1

等待圉鍢 2024-12-11 13:41:21

这说明了相关 jQuery 的基础知识。我假设你可以处理点击事件。

HTML:

<div class="z">
<img class="active" alt="foobar" src="http://placehold.it/350x150"/>
</div>
<div id="title"></div>

Javascript:

$("#title").text($('.z .active').attr('alt'));

JSFiddle 上查看。

This illustrates the basics of the jQuery in question. I assume you can handle the click events.

HTML:

<div class="z">
<img class="active" alt="foobar" src="http://placehold.it/350x150"/>
</div>
<div id="title"></div>

Javascript:

$("#title").text($('.z .active').attr('alt'));

Check it out on JSFiddle.

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