jQuery tmpl从模板中调用另一个模板

时间:2013-06-28 06:43:46

标签: jquery knockout.js jquery-templates

我正在使用Knockout和jQuery tmpl。

如果我这样称呼它,我怎么能在模板“filter-string”中传递一些数据:

{{tmpl() '#filter-string'}}

我的模板看起来像这样:

<script type="text/html" id="filter-string">
   <input type="text" data-bind="value: $data" />
</script>

如何在模板渲染后在文本框上应用jquery日期选择器?

1 个答案:

答案 0 :(得分:2)

knockout.js tutorial开始,以下是绑定时将数据传递到模板的方法:

<div data-bind="template: { name: 'person-template', data: buyer }"></div>
如果不是你想要的话,

提供更多代码