1

不确定这是否可能,并且可能只是疯狂的复活节星期一无聊!但只是认为它可以为我节省一些麻烦。

我想知道当你链接一些文本时,这些文本是否可以在标题标签中重复,即:

<a href="#" title="these are the words" >these are the words</a>

jquery可以做到这一点吗?诸如在标题中查找文本并重复之类的东西?

4

2 回答 2

0

是的,这是可以做到的。

$(function() {
   $("a").each(function(index, element) {
     $(element).attr('title',$(element).text());
   });
});
于 2013-04-01T17:26:41.030 回答
0

您可以使用以下代码遍历所有链接:

 $('a').each(function() {
    var text = $(this).text();
    $(this).attr('title', text );
});

第一部分获取链接文本,然后将标题设为文本。

于 2013-04-01T17:27:01.237 回答