1 Star 0 Fork 0

ayu/测试仓库2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myTemplate.js 271 Bytes
一键复制 编辑 原始数据 按行查看 历史
ayu 提交于 2020-08-12 09:48 . 这里全是ajax的练习
function template(id, data) {
var str = document.getElementById(id).innerHTML;
var reg = /{{\s*([a-zA-Z]+)\s*}}/;
var res = null;
while (res = reg.exec(str)) {
str = str.replace(res[0], data[res[1]]);
}
console.log(str);
return str;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ayu999/project_03.git
git@gitee.com:ayu999/project_03.git
ayu999
project_03
测试仓库2
master

搜索帮助