0

我试过:

$('span.tag').each(function(){
    $(this).attr('title', '').prop('title', function(){$(this).children('li:first').text();});
});
4

2 回答 2

1

为什么这么复杂?这很简单

$('span.tag').each(function(){
    $(this).attr('title', $(this).find('li:first').text());
});
于 2013-03-18T11:37:51.487 回答
1

试试这个:

$('span.tag').attr('title', function(){
    return $(this).find('li:first').text();
});
于 2013-03-18T11:39:40.120 回答