Javascript使用技巧
Template.Util = {//tool type format : function (str, model) {//format the template for (var k in model) { var re = new RegExp("{" + k + "}", "g"); str = str.replace(re, model[k]) } return str; } }
使用方式:
var Template = { fn: { constant: { tab: '<table id={tableId} border=0 cellpadding=1 cellspacing=1 class=tb_datalist></table>' } } } createHoriz: function(item) { return $(Template.Util.format(Vc.constant.horizontal, { "ULId": item.ULId })); }
好处是构造$jquery对象可以直接用字符串+json对象进行替换,代码清晰
相关推荐
nmgxzm00 2020-11-10
ifconfig 2020-10-14
hhanbj 2020-11-17
zfszhangyuan 2020-11-16
古叶峰 2020-11-16
一个智障 2020-11-15
jipengx 2020-11-12
81427005 2020-11-11
xixixi 2020-11-11
游走的豚鼠君 2020-11-10
苗疆三刀的随手记 2020-11-10
Web卓不凡 2020-11-03
小飞侠V 2020-11-02
帕尼尼 2020-10-30
爱读书的旅行者 2020-10-26
帕尼尼 2020-10-23
杏仁技术站 2020-10-23
淼寒儿 2020-10-22