0

我是 jQuery 的新手。我希望通过 jQuery 将链接的内容插入到 span 中。我首先针对每个链接并使用 将内容包装在一个跨度中.wrapInner,但现在需要动态插入 data-title 值以匹配每个链接。

<a href="http://samplesite.com">
 <span data-title="...."> Sample Link </span> 
</a>

在这种情况下,我想要 span data-title="Sample Link",但我希望它针对每个链接进行更改。我的目标基于链接文本/内容是什么。

4

1 回答 1

0
$('span').each(function() {
    $(this).attr('data-title', $(this).html());
});
于 2013-09-07T03:06:44.997 回答