1 Star 0 Fork 0

ayu/测试仓库2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
正则匹配 replace.html 736 Bytes
一键复制 编辑 原始数据 按行查看 历史
ayu 提交于 2020-08-12 09:48 . 这里全是ajax的练习
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
var str1 = '<div>{{name}}</div>'
var str2 = '<p>{{age}}</p>'
var str3 = '<span>{{ msg }}</span>'
var reg = /{{\s*([a-zA-Z]+)\s*}}/
//'+'代表至少出现一次 '*'代表0-多次
var res = reg.exec(str1);
var res1 = reg.exec(str2);
var res2 = reg.exec(str3);
str1 = str1.replace(res[0], res[1]);
str2 = str2.replace(res1[0], res1[1]);
str3 = str3.replace(res2[0], res2[1]);
console.log(str1, str2, str3);
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ayu999/project_03.git
git@gitee.com:ayu999/project_03.git
ayu999
project_03
测试仓库2
master

搜索帮助