首页 > 语言 > JavaScript > 正文

JavaScript模板引擎用法实例

2024-05-06 16:22:57
字体:
来源:转载
供稿:网友

这篇文章主要介绍了JavaScript模板引擎用法,涉及javascript实现模板的定义与字符替换的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了JavaScript模板引擎用法。分享给大家供大家参考。具体如下:

这里介绍的这个模板引擎写得短小精悍,非常值得一看

tmpl.js文件如下:

 

 
  1. // Simple JavaScript Templating 
  2. // John Resig - http://ejohn.org/ - MIT Licensed 
  3. (function() { 
  4. var cache = {}; 
  5. this.tmpl = function tmpl(str, data) { 
  6. // Figure out if we're getting a template, or if we need to 
  7. // load the template - and be sure to cache the result. 
  8. var fn =  
  9. !//W/.test(str)  
  10. ?  
  11. cache[str] = cache[str] || tmpl(document.getElementById(str).innerHTML)  
  12. // Generate a reusable function that will serve as a template 
  13. // generator (and which will be cached). 
  14. new Function( 
  15. "obj""var p=[],print=function(){p.push.apply(p,arguments);};" + 
  16. // Introduce the data as local variables using with(){} 
  17. "with(obj){p.push('" + 
  18. // Convert the template into pure JavaScript 
  19. str 
  20. .replace(/[/r/t/n]/g, " "
  21. .split("<%").join("/t"
  22. .replace(/((^|%>)[^/t]*)'/g, "$1/r"
  23. .replace(//t=(.*?)%>/g, "',$1,'"
  24. .split("/t"
  25. .join("');"
  26. .split("%>"
  27. .join("p.push('"
  28. .split("/r"
  29. .join("//'") +  
  30. "');}return p.join('');" 
  31. ); // Function ends 
  32. // Provide some basic currying to the user 
  33. return data ? fn(data) : fn; 
  34. }; 
  35. })(); 

index.html文件如下:

 

 
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
  2. "http://www.w3.org/TR/html4/loose.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  6. <title>JavaScript tmpl Use Demo</title> 
  7. <script type="text/javascript" src="js/jquery.min.js"></script> 
  8. <script src="./tmpl.js" type="text/javascript"></script> 
  9. <!-- 下面是模板user_tmpl --> 
  10. <script type="text/html" id="user_tmpl"
  11. <% for ( var i = 0; i < users.length; i++ ) { %> 
  12. <li><a href="<%=users[i].url%>"><%=users[i].name%></a></li> 
  13. <% } %> 
  14. </script> 
  15. <script type="text/javascript"
  16. // 用来填充模板的数据 
  17. var users = [ 
  18. { url: "http://baidu.com", name: "jxq"}, 
  19. { url: "http://google.com", name: "william"
  20. ]; 
  21. $(function() { 
  22. // 调用模板引擎函数将数据填充到模板获得最终内容 
  23. $("#myUl").html(tmpl("user_tmpl", users)); 
  24. }); 
  25. </script> 
  26. </head> 
  27. <body> 
  28. <div> 
  29. <ul id="myUl"
  30. </ul> 
  31. </div> 
  32. </body> 
  33. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选