(function(win, $) { infotoday(); var $infolist = $('#kblist2'); var infolisttmpl = util.clearhtml($("#todaylist-tmpl2").html()); var m = mustache; m.parse(infolisttmpl); //获取今日项目数据 function infotoday() { $.ajax({ url: siteinfo.projectname+'/getkbinfo.action?cmd=getkbjson', type: 'get', datatype: 'json' }) .done(function(data) { //console.log($.parsejson(data.custom)); var msg=$.parsejson(data.custom).kblist; $.each(msg, function(index,el) { el.index = index + 1; el.usetime = el.usetime.substring(11,19); }); renderlist(msg); }) .fail(function() { console.log("error"); }); } //渲染数据 function renderlist(data){ $infolist.append(m.render(infolisttmpl, { items: data })); } }(this, jquery));