jQuery.tmpl.js 网址如下: http://api.jquery.com/category/plugins/templates/ 实例 html head titlejquery tmpl/title script type=text/javascript src=jquery-1.7.2.js /脚本 脚本类型=text/javascript src=jquery.tmpl.js /script /head body ul
网址如下:
http://api.jquery.com/category/plugins/templates/
jquery tmpl标题>
<脚本类型=“text/javascript”src=“jquery-1.7.2.js”>
脚本>
头>
//数据
var 电影 = [
{ 名称:"red", rel:"1998"},
{ 名称:"wide", rel:"1994"},
{ 名称:"blue", rel:"1997"}
];
//模板结构
var 标记 = "
//生成模板
$.template("movieTemplate", 标记);
//模板绑定数据
$.tmpl("movieTemplate", 电影)
.appendTo("#list");
脚本>
身体>