artTemplate js模板引擎动态给html赋值

匿名 (未验证) 提交于 2019-12-02 20:30:32

html放到$("#area").append(html);之前,否则文档流获取不到#area

<table width="90%" class="table" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th >
名字
</th>
<th >
价格
</th>
</tr>
</thead>
<tbody id="area">
</tbody>
</table>

<script src="template-web.js"></script>

<script id="aaa" type="text/html">
{{each Table as value i}}
<tr><td>{{value.Name}}</td><td>{{value.Price}}</td></tr>
{{/each}}
</script>

<script>

var json={

Table:[
{Name:'牛肉',Price:'50'},
{Name:'羊肉',Price:'59'},
{Name:'鸡肉',Price:'21'}
]
};

var html = template('aaa', json);
$("#area").append(html);

</script>

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!