将链接转换为JS中的超链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将链接转换为JS中的超链接相关的知识,希望对你有一定的参考价值。
// this looks for urls in html and makes them links // I apologize in advance var exp = /((https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|])/ig; return text.replace(exp, "<a href='$1'>$1</a>"); }
以上是关于将链接转换为JS中的超链接的主要内容,如果未能解决你的问题,请参考以下文章