Fragment.js允许你加载html碎片到任何元素中,只需要使用data-fragment属性。
<divdata-fragment="fragment.html"></div>
也可通过JSON进行加载,如:
<divdata-fragment-json="fragment.json">Thisis{{adjective}}!</div>
或者是二者的组合:
<divdata-fragment="mustache-fragment.html"data-fragment-json="fragment.json"></div>
评论