热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

htmljquery模板引擎,jqueryjtemplates.js模板渲染引擎的详细用法第三篇

jqueryjtemplates.js模板渲染引擎的详细用法第三篇jQuery-jTemplates.container{width:1000px;height:600px;mar

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

jQuery - jTemplates

.container{

width: 1000px;

height: 600px;

margin: 0 auto;

}

.template{

display: none;

}

table{

background-color: #fff;

}

table tr th{

padding: 8px;

border-bottom: 1px solid #eee;

}

table tr td{

padding: 10px;

border-bottom: 1px solid #eee;

}

$(function(){

// 初始化JSON数据

// 通过getJSON方法加载

// $.getJSON("./data/dataSource1.json", function(data){

// // 设置模板

// $("#result").setTemplateElement("template");

// // 给模板加载数据

// $("#result").processTemplate(data);

// });

// 通过ajax方法加载

$.ajax({

type:"post",

dataType:"json",

url:"./data/dataSource1.json",

success:function(data){

// alert(data);

// 设置模板

$("#result").setTemplateElement("template");

// 给模板加载数据

$("#result").processTemplate(data);

},

error:function(error){

alert("error:" + error.responseText);

}

});

});

标题

{#template MAIN}

Id标题发布时间

{#foreach $T.Lists as r}

{#include ROW root=$T.r}

{#/for}

{#/template MAIN}

{#template ROW}

{$T.Id}{$T.Title}{$T.CreateDate}

{#/template ROW}

这个是一个例子



推荐阅读
author-avatar
枪手杰_863
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有