jQuery模板引擎: jQuery-tmpl 和 JsRender 使用介绍
<!DOCTYPE html>
<html>
<head>
<title>jQuery模板引擎比较</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="path/to/jquery.tmpl.min.js"></script>
<script src="path/to/jsrender.js"></script>
</head>
<body>
<h2>jQuery-tmpl 示例</h2>
<div id="tmpl-template"></div>
<h2>JsRender 示例</h2>
<div id="jsrender-template"></div>
<script type="text/x-jquery-tmpl" id="tmpl-template-content">
<h3>{{=name}}</h3>
<ul>
{{for people}}
<li>{{=$value}}</li>
{{/for}}
</ul>
</script>
<script id="jsrender-template-content" type="text/x-jsrender">
<h3>{{:name}}</h3>
<ul>
{{for people}}
<li>{{:}}</li>
{{/for}}
</ul>
</script>
<script>
var data = {
name: "人物列表",
people: ["张三", "李四", "王五"]
};
// jQuery-tmpl 使用
$("#tmpl-template").append($("#tmpl-template-content").render(data));
// JsRender 使用
$("#jsrender-template").html($("#jsrender-template-content").render(data));
</script>
</body>
</html>
这个示例代码展示了如何使用jQuery-tmpl和JsRender这两种常用的jQuery模板引擎。代码中定义了模板内容,并通过jQuery选择器和模板引擎的渲染方法将模板和数据结合,生成最终的HTML并插入到页面中。这是一个简单的比较,实际项目中可能需要根据具体情况选择合适的模板引擎。
评论已关闭