underscore 系列之实现一个模板引擎(上)

前言 underscore 提供了模板引擎的功能,举个例子: var tpl = hello: <%= name %>; var compiled = _.template(tpl); compiled({name: 'Kevin'}); // hello: Kevin 感觉好像没有什么强大的地方,再来举个例子: 在 HTML 文件中: <ul id=name_list></ul> <script type=text/html i