• JS 模板


    function init() {
    var DATAJson=JSON.parse(DATA);

    var sort=DATAJson.sort(function(a,b){
    	return a.status>b.status?-1:1
    });
    //console.log(sort);	
    String.prototype.temp = function(obj) {   //替换$$里面的内容
        return this.replace(/$w+$/gi, function(matchs) { //
            var returns = obj[matchs.replace(/$/g, "")];	//匹配json中每个以$开头的
            return (returns + "") == "undefined"? "": returns;
        });
    };
    var htmlList = ''
        , htmlTemp = $("ul").html();
    //console.log(htmlTemp.temp(DATAJson));
    DATAJson.forEach(function(item) {
         htmlList += htmlTemp.temp(item);
    });
       $("ul").html(htmlList);
    
      $("#DONE").empty().html("未完成");
    }	
    

    网上抄的模板,注意正则!!!

    var DATAJson=JSON.parse(DATA);
    var sort=DATAJson.sort(function(a,b){
    	return a.status>b.status?-1:1
    });
    //console.log(sort);	
    String.prototype.temp = function(obj) {   //替换$$里面的内容
        return this.replace(/$w+$/gi, function(matchs) { 
            var returns = obj[matchs.replace(/$/g, "")];	//匹配json中每个以$开头的
            return (returns + "") == "undefined"? "": returns;
        });
    };
    var htmlList = ''
        , htmlTemp = $("ul").html();
    //console.log(htmlTemp.temp(DATAJson));
    DATAJson.forEach(function(item) {
         htmlList += htmlTemp.temp(item);
    });
       $("ul").html(htmlList);	
      $("#DONE").empty().html("未完成");
    }
  • 相关阅读:
    JAVA 读取Properties文件内容乱码 解决方法
    java代码求IP和mac地址
    jsp 清除session的方法
    Go语言字符串和正则表达式
    go语言:字符串操作
    博客园美化基本完成!!!
    美化了一下页面
    第一天:初入博客园
    c语言实参与形参的区别
    c链表中指针的一些用法要点
  • 原文地址:https://www.cnblogs.com/liuestc/p/5680131.html
Copyright © 2020-2023  润新知