摘要:
//index.html文件 Document {{message}} {{message}} --> {{name}} //cvue.js文件 class Cvue{ constructor(options){ this.$option... 阅读全文
摘要:
//正则默认:匹配成功就会结束匹配 (如果想全部查找加标识 g),不区分大小写 (如果想区分大小写 加标识 i) //1.test : 正则去匹配字符串,如果匹配成功返回真,匹配失败返回假; 正则.test(字符串) //2.search : 正则去匹配字符串,如果匹配成功就返回匹配位置,否则就返回 -1; 字符串.search(正则) //3.match : 正则去匹配字符串,如果匹... 阅读全文