js經常使用功能技巧函數

//CSS複合樣式轉成JS駝峯式
function cssStyle2DomStyle(sName) {
    return sName.replace(/-\w/g,function(match){
        return match[1].toUpperCase();
    })
}

//簡易模板
function template(context,json){
    var str = document.querySelector(context).innerHTML;
    var re = /{{\s*(\w+)\s*}}/g;
    return str.replace(re,function(match,key){
        return json[key];
    })  
}
相關文章
相關標籤/搜索