欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

【转载】Asp.Net中使用基于jQuery的javascript前台模版引擎JTemplate

程序员文章站 2022-03-20 09:37:47
JTemplate是基于jQuery的开源的前端模版引擎,在Jtemplate模板中可以使用if判断、foreach循环、for循环等操作,使用Jtemplate模板优点在于ajax局部刷新界面时候不必要拼接html语句、可以通过ajax获取JSON格式的数据、在模版中允许使用javascript代 ......

jtemplate是基于jquery的开源的前端模版引擎,在jtemplate模板中可以使用if判断、foreach循环、for循环等操作,使用jtemplate模板优点在于ajax局部刷新界面时候不必要拼接html语句、可以通过ajax获取json格式的数据、在模版中允许使用javascript代码、允许你创建串接模版、允许你在模版中创建参数、即时刷新,自动从服务器端获取更新内容。

一、 jtemplate常用的标签有:

1、template      模版标签
2、if  .. elseif .. else .. /if   条件语句
3、foreach .. else .. /for        循环
4、for .. else .. /for      循环
5、continue, break          继续或中断

二、jtemplates的语法:

(1)if语法

{#if |cond|}..{#elseif |cond|}..{#else}..{#/if} 
#if 示例:
 {#if $t.hello} hello world. {#/if}

 {#if 2*8==16} good {#else} fail {#/if} 

{#if $t.age>=18)} 成人了 {#else} 未成年 {#/if}

 {#if $t.list_id == 3} system list {#elseif $t.list_id == 4} users list {#elseif $t.list_id == 5} errors list {#/if}

(2)for语法

{#for |var| = |code| to |code| [step=|code|]}..{#else}..{#/for}

示例:
默认步长:{#for index = 1 to 10} {$t.index} {#/for} 
正向步长:{#for index = 1 to 10 step=3} {$t.index} {#/for}
 负向步长及空循环:{#for index = 1 to 10 step=-3} {$t.index} {#else} nothing {#/for} 
也可以在循环中使用变量:{#for index = $t.start to $t.end step=$t.step} {$t.index} {#/for} 
说明:{#else}是在{#for...}未能执行的时的输出内容。

(3)foreach语法

{#foreach |var| as |name| [begin=|code|] [count=|code|] [step=|code|]}..{#else}..{#/for}

示例:
默认:{#foreach $t.table as record} {$t.record.name} {#/for}
指定起始位置:{#foreach $t.table as record begin=1} {$t.record.name} {#/for} 
指定起始和循环次数:{#foreach $t.table as record begin=1 count=2} {$t.record.name} {#/for} 
指定步长:{#foreach $t.table as record step=2} {$t.record.name} {#/for}

三、jtemplate模板使用方法如下:

<div id="result"></div>  
    <textarea id="template_1" style="display: none;">  
       <table>  
         <tr>  
           <th></th>  
          </tr>  
         {#foreach $t as record}  
         <tr>  
           <td>{$t.record.属性名}</td>  
         </tr>  
        {#/for}  
       </table>  
    </textarea>  


绑定数据以及调用语句中关键的2句:

$('#result').settemplateelement('template_1');  //设置模版  
$('#result').processtemplate(data);   //执行数据 

 

备注:原文转载自asp.net中使用基于jquery的javascript前台模版引擎jtemplate_it技术小趣屋