jTemplates 사용

jTemplates 는 JQuery 기반 템 플 릿 엔진 플러그 인 으로 기능 이 강해 서 JS 바 인 딩 데이터 세트 를 사용 할 때 걱정 하지 않 아 도 됩 니 다.
Templates 를 사용 하면 jstl 태그 로 jsp 프로그램 을 만 들 고 캐 시 플러그 인 을 추가 하면 성능 향상 에 큰 도움 이 될 것 같 습 니 다.
더욱 협조 한다   delegate 이벤트 처리 방법 은 매우 간결 한 js 프로그램 을 쓸 수 있 습 니 다.
  jTemplates 홈 페이지 주소
http://jtemplates.tpython.com/#results
 
 jQuery 의. bind (),. live () 와. delegate () 의 차이 점 을 보 세 요.
 http://article.yeeyan.org/view/213582/179910
 
 
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>jTemplates</title>
</head>
<body>
	<div id="result"></div>
	<div id="foreachResult"></div>
</body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="http://jtemplates.tpython.com/jquery-jtemplates_uncompressed.js"></script>
<!-- script , js foreach -->
<script type="text/template" id="foreach"> <table> <thead> <tr> <td>Index</td> <td>Iterator</td> <td>Name</td> <td>Age</td> <td>First?</td> <td>Last?</td> </tr> </thread> <tbody> {#foreach $T.table as record begin=1} <tr> <td>{$T.record$index}</td> <td>{$T.record$iteration}</td> <td>{$T.record.name}</td> <td>{$T.record.age}</td> <td>{$T.record$first}</td> <td>{$T.record$last}</td> </tr> {#/for} </tbody> </table> </script> <script> //$("#result").setTemplate("Template by {$T.bold()} version <em>{$Q.version}</em>."); //$("#result").processTemplate("jTemplates"); $(function($){ var data = { name: 'User list', list_id: 6, table: [ {id: 1, name: 'Anne', age: 22, mail: '[email protected]'}, {id: 2, name: 'Amelie', age: 24, mail: '[email protected]'}, {id: 3, name: 'Polly', age: 18, mail: '[email protected]'}, {id: 4, name: 'Alice', age: 26, mail: '[email protected]'}, {id: 5, name: 'Martha', age: 25, mail: '[email protected]'} ] }; var mydata = { name: "Anne", age: "20" }; $("#result").setTemplate("{#if $T.list_id == 4} good {#elseif $T.list_id == 5} normal {#else} bad {#/if}"); $("#result").processTemplate(data); $('#foreachResult').setTemplate($('#foreach').html()).processTemplate(data); $('#foreachResult').delegate('td','click',function(){ alert($(this).text()); }); }); </script> </html>

좋은 웹페이지 즐겨찾기