首頁  >  文章  >  web前端  >  介紹jquery.mustache.js的使用實例

介紹jquery.mustache.js的使用實例

零下一度
零下一度原創
2017-06-17 17:53:352838瀏覽

jquery.mustache是​​用jQuery做了一層封裝,提供了以下幾個方法,讓模板使用更方便。
1,新增模板的三種方式

add,

addFromDom

addFromString

可以直接新增模板,無論是作為字串文字或引用其他的DOM元素

(1)template 是字串直接量

//add仅仅是把template添加到当前页面,注意并没有渲染
$.Mustache.add('string-template', '<p>Hi, {{name}}, this is an inline template<p>');

(2)引用DOM元素  addFromDom

#
// 两者是相同的,后者有更简洁的语法 These two are identical, the latter just provides a terser syntax.
$.Mustache.add('dom-template', $('#dom-template').html());
$.Mustache.addFromDom('dom-template');

如果你更願意將模板儲存在DOM中(假設從外部檔案載入它們),此時你可以只呼叫

$.Mustache.addFromDom(),不用任何參數,這樣的話將讀取你模板中所有