欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JavaScript頁面模板庫handlebars的簡(jiǎn)單用法

 更新時(shí)間:2015年03月02日 08:52:16   投稿:hebedich  
本文主要是給大家分享的一個(gè)javascript頁面模板庫Handlebars的簡(jiǎn)單用法,可以幫助大家輕松的構(gòu)建語義化模板,非常的實(shí)用,推薦給大家。

Handlebars 是一個(gè) JavaScript 頁面模板庫,幫助你輕松的構(gòu)建語義化模板。

復(fù)制代碼 代碼如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>handlebars</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script src="${base}/js/jquery1.11.min.js"></script>
<script src="${base}/js/handlebars-v3.0.0.js"></script>
</head>
<body>
    <div id=tt style='display: none'>
        <div class="entry">
            <h1>{{title}}</h1>
            <div class="body">{{body}}</div>
        </div>
    </div>
</body>
<script type="text/javascript">
    //$('#tt').before('<script id="temp" type="sfd">');
    //$('#tt').after("</ script>");//
    var source = $("#tt").html();
    //alert(source);
    var template = Handlebars.compile(source);
    var data = {title: "My New Post" , body: "This is my first post!"
    };
    var result = template(data);//將數(shù)據(jù) 填充到模板
    console.log(result);
    $('#tt').before(result);
</script>
</html>

示例很簡(jiǎn)單,具體詳情可參考ThinkVitamin的文章 Getting Started with Handlebars.js,希望大家能夠喜歡。

相關(guān)文章

最新評(píng)論