我正在努力做到这一点:
<td class="Monthly Status-cell">/fileid=XXXX</td>
展示为
http://www.domain.com/fileid=XXXX
你能告诉我我的代码有什么问题吗?
$('.Status-cell').replaceWith(function() {
var url = $.trim($(this).text());
return '<a href="' + url + '" target="_blank">' + url + '</a>';
});
谢谢!