码迷,mamicode.com
首页 > 其他好文 > 详细

Using {{each}} in a template with an array of arrays

时间:2014-09-22 16:24:22      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   2014   div   sp   on   

 <script id="DeptTemplate" type="text/x-jquery-tmpl">
        <li>
            Title:${Name}
            {{each Emp}}
            <br />${$index+1}:${$value}
            {{/each}}
        </li>
    </script>
    <ul id="deptList"></ul>
    <script>
        var deptlist = [
        { Name: "销售部", Emp: ["张三", "李四", "李四", "李四", "李四", "李四"] },
        { Name: "网络部", Emp: ["王二", "李四", "李四", "李四"] }
        ];
        $("#DeptTemplate").tmpl(deptlist).appendTo("#deptList");
    </script>

 

 

bubuko.com,布布扣

Using {{each}} in a template with an array of arrays

标签:style   blog   http   color   ar   2014   div   sp   on   

原文地址:http://www.cnblogs.com/xiaoxiaof/p/3985858.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!