好用的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 函数库的主要内容,如果未能解决你的问题,请参考以下文章

Chrome-Devtools代码片段中的多个JS库

JQuery入门

JQuery学习笔记

一些好用的java语言函数式编程库

javascript WordPress媒体库JS片段

AJAX相关JS代码片段和部分浏览器模型