使用 jQuery 将图像的 alt 值动态写入为文本
尝试编写一个小函数,用图像的替代文本更新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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这说明了相关 jQuery 的基础知识。我假设你可以处理点击事件。
HTML:
Javascript:
在 JSFiddle 上查看。
This illustrates the basics of the jQuery in question. I assume you can handle the click events.
HTML:
Javascript:
Check it out on JSFiddle.