好用的JS 函数库
Posted clintisgoodboy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了好用的JS 函数库相关的知识,希望对你有一定的参考价值。
前言
主要是用于记录比较好用的函数库,方便以后使用
URL字符串替换为 A标签
function replaceURLWithhtmlLinks(text) {
var exp = /(http:\\/\\/|ftp:\\/\\/|https:\\/\\/|www.)[\\w\\-_]+(\\.[\\w\\-_]+)+([\\w\\-\\.,@?^=%&:/~\\+#]*[\\w\\-\\@?^=%&/~\\+#])?/g;
return text.replace(exp,function(url){
return "<a href=\'"+url+"\'>"+url+"</a>"
});
}
console.log(replaceURLWithHTMLLinks("www.google.com"))
console.log(replaceURLWithHTMLLinks("www.baidu.com/#/a?c=21"))
console.log(replaceURLWithHTMLLinks("http://www.baidu.com"))
console.log(replaceURLWithHTMLLinks("http://www.baidu.com/#/a?c=12"))
console.log(replaceURLWithHTMLLinks("我的http://www.baidu.com"))
console.log(replaceURLWithHTMLLinks("http://www.baidu.com我的"))
console.log(replaceURLWithHTMLLinks("我的http://www.baidu.com/我的"))
console.log(replaceURLWithHTMLLinks("12.png"))
console.log(replaceURLWithHTMLLinks("www.baodi.com/ 12"))
以上是关于好用的JS 函数库的主要内容,如果未能解决你的问题,请参考以下文章