码迷,mamicode.com
首页 > Web开发 > 详细

handlebars.min.js的使用

时间:2019-01-23 20:29:47      阅读:370      评论:0      收藏:0      [点我收藏+]

标签:rac   context   initial   pat   com   hand   定义   cap   编译   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
    <title>handlebars.min.js的使用</title>
</head>
<body>
    <ul id="append_ul">
    </ul>
</body>
<script src="../js/jquery.min.js" type="text/javascript"></script>
<script src="../js/handlebars.min.js" type="text/javascript"></script>
<!-- 预编译模板 -->
<script id="appendTemplate" type="text/x-handlebars-template">
        {{description.escaped}}  
        {{example}}  
        <br><br>  
        {{description.unescaped}}  
        {{{example}}}  
</script>
<script type="text/javascript">
    $(function(){
        // 1.获取模板
        var html = $("#appendTemplate").html();
        // 2.编译模板
        var compile_html = Handlebars.compile(html);
        // 3.定义数据
        var context = {
            "description": {  
                "escaped": "Using {{}} brackets will result in escaped HTML:",  
                "unescaped": "Using {{{}}} will leave the context as it is:"  
            },  
            "example": "<button> Hello </button>"  
        };
        // 4.传送数据
        var append_html = compile_html(context);
        // 5.追加html
        $("#append_ul").append(append_html);
    });
</script>
</html>

 

handlebars.min.js的使用

标签:rac   context   initial   pat   com   hand   定义   cap   编译   

原文地址:https://www.cnblogs.com/konglingxi/p/10311128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!