JTemplates + $.Ajax

Posted 越过那个限制

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JTemplates + $.Ajax相关的知识,希望对你有一定的参考价值。

只需要改列名即可 :<script type="text/template" id="foreach">   里的循环

{$T.record.列名}

 


<script src="~/Js/jquery-2.1.0.js"></script>
<script src="~/Js/md5.js"></script>
<script src="~/Js/jquery-jtemplates.js"></script>
<script type="text/javascript">

    function Test3() {
        alert(new Date().getTime());
        $.ajax({
            type: "post",    //请求方式
            url: "BaiLong/GetTravelAgencyList",
            success: function (data) {
                //绑定为json对象
                var da2 = JSON.parse(data);
                $(‘#myistrue‘).setTemplate($(‘#foreach‘).html()).processTemplate(da2);
            }
         
        });



    }




</script>

<script type="text/template" id="foreach">   
        {#foreach $T.AgentList as record begin=0}  
        <tr>  
            <td>{$T.record.nAgentID}</td>  
            <td>{$T.record.sAgentCode}</td>  
              <td>{$T.record.sCommission}</td>  
        </tr>  
        {#/for}  
     
     
    
</script>



<body>
      <table>  
    <thead>  
        <tr>  
            <td>Age</td>  
            <td>First?</td>  
            <td>Last?</td>  
        </tr>  
    </thead>  
    <tbody id="myistrue">  
    </tbody>  
</table>
    <section class="featured">
        <button onclick="Test3()">调取旅行社列表</button>
    </section>
</body>





























































以上是关于JTemplates + $.Ajax的主要内容,如果未能解决你的问题,请参考以下文章

jquery-jtemplates.js模板应用

JTemplates + $.Ajax

jquery jtemplates.js模板渲染引擎的详细用法第二篇

jquery jtemplates.js模板渲染引擎的详细用法第三篇

用Jquery读取JSON数据显示在jtemplates后,怎么去修改

JTemplate学习