我是一个 jQuery 新手。我有类似以下 HTML 的内容:
<div class=dcsns-youtube>
<span class="section-thumb">
<a href="some-link"><img src="http://img.youtube.com/vi/m4-1FZeoBtQ/default.jpg" alt=""></a>
</span>
<span class="section-title">
<a href="some-link">Text on the link</a>
</span>
<div>
我想使用类“section-title”获取跨度内的 a 元素内的文本,例如“链接上的文本”,并将其用作跨度内的 a 元素上的标题,类“部分拇指”。
以下 jQuery 代码仅适用于单个 div:
jQuery('.dcsns-youtube .section-thumb a').attr('title', $('.dcsns-youtube .section-title').text());
如果我有多个 div,如何在跨度内的每个元素中添加一个元素,并使用类“section-thumb”在跨度内的 a 元素的文本上分别添加类“section-title”?