mustache.js は、テンプレートエンジン「mustache」の JavaScript 実装です。mustahce の特徴の1つは、logic-less なところです。 これから、mustache.js の使用例を書いていこうと思います。 例1:Quick Example 最後の script タグで、Mustache.render(template, obj) を使ってレンダリングしています。 usage.html <!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>mustache.js | Usage</title> </head> <body> <p></p> <!-- jQuery と mustache.js を読み込む --> <script src="http://code.jque