js獲取內容中的url連結,並設定a標籤

silenceboy發表於2016-05-24
var regexp = /(http://|https://)((w|=|?|.|/|&|-)+)/g;
content = content.replace(regexp, function($url){
 return "<a href=`" + $url + "` target=`_blank`>" + $url + "</a>";
});
console.log(content);

相關文章