1
4

2 回答 2

1

$('.profile-link').html();如果您需要重用链接的内容(非转义 HTML,视为 HTML),请尝试。

$('.profile-link').text();如果你只是抓住一根绳子。

于 2012-09-15T14:20:06.330 回答
1

如果你想要一个带有类的标签的所有内容。

$('a.profile-link').map(function() {
    return $(this).text();  // use .html() if you want the html content.
}).get().join("\n"); // joined by newline, you could change to other else.
于 2012-09-15T14:24:42.063 回答