将文本URL转换为链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将文本URL转换为链接相关的知识,希望对你有一定的参考价值。
linkify_plain:function(text) { if( !text ) return text; text = text.replace(/((https?://|ftp://)|(www.))(S+)(w{2,4})(:[0-9]+)?(/|/([w#!:.?+=&%@!-/]))?/gi,function(url){ nice = url; if( url.match('^https?://') ) { nice = nice.replace(/^https?:///i,'') } else url = 'http://'+url; return '<a target="_blank" rel="nofollow" href="'+ url +'">'+ nice.replace(/^www./i,'') +'</a>'; }); return text; }
以上是关于将文本URL转换为链接的主要内容,如果未能解决你的问题,请参考以下文章
如何将一列文本 URL 转换为 Excel 中的活动超链接?