<script id="categoryList" type="text/x-jquery-tmpl">
<li>
<a href="javascript:void(0)" val="0" class="category cate-sort">全部分类</a>
{
{each(i,d) resultObject}}
{
{html i%4==3?"</li><li>":"" }}
<a href="javascript:void(0)" val=${id} class="category cate-sort">${name}</a>
{
{/each}}
</li>
</script>
<script id="categoryList" type="text/x-jquery-tmpl">
<li>
<a href="javascript:void(0)" val="0" class="category cate-sort">全部分类</a>
{
{each(i,d) resultObject}}
{
{html i%4==3?"</li><li>":"" }}
<a href="javascript:void(0)" val=${id} class="category cate-sort">${name}</a>
{
{/each}}
</li>
</script>
function initCategory() {
microlessonDataController.getCategory(function (data) {
if (data.status == 200) {
$("#categoryList").tmpl(data).appendTo("#ul-category");
}
}, true)
//$("#categoryList").tmpl(data).appendTo("#ul-category");
}
还没有评论,来说两句吧...