介绍jquery.mustache.js的使用实例

零下一度
Lepaskan: 2017-06-17 17:53:35
asal
2839 orang telah melayarinya

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>');
Salin selepas log masuk

(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');
Salin selepas log masuk

如果你更愿意将模板存储在DOM中(假设从外部文件载入它们),此时你可以仅调用

$.Mustache.addFromDom(),不用任何参数,这样的话将读取你模板中所有

Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan