假设我有以下 HTML 代码 -
<input type="text" placeholder="name" />
我想转换成
<input type="{{type}}" placeholder="{{text}}" />
如何使用 Handlebars.js 做到这一点?
假设我有以下 HTML 代码 -
<input type="text" placeholder="name" />
我想转换成
<input type="{{type}}" placeholder="{{text}}" />
如何使用 Handlebars.js 做到这一点?