jQuery tmpl 插件
tmpl 最烦人的事情是你不能替换 <> 里面的 ${n} 。例如
<a href="details/?id=${id}">${name}</a>
${id} 不会被替换。
任何想法如何在不必使用 标签的情况下做到这一点,因为这不是一个好方法。
甚至如何检查复选框。
我的模板看起来像这样,
<table id="lvList" class="grid1">
<tr>
<th>Name</th>
<th>Number</th>
<th>Type</th>
<th>Account Manager</th>
</tr>
<!-- itemtemplate -->
<tr>
<td>{{html $item.href('details/?id=$id')}}</td>
<td>${id}</td>
<td>${type}</td>
<td>${accmgr}</td>
</tr>
<!-- itemtemplate -->
</table>
如果您想知道我如何从表格中获取模板,您可以查看这篇文章 ItemTemplate
使用该模板,这就是我想出的
var items = $.tmpl(this.itemtemplate, data, {
href: function (url) {
for (i in this.data)
{ url = url.replace("$" + i, this.data[i]); }
return "<a href=\"" + url + "\">" + this.data["name"] + "</a>";
}
});
The most annoying thing about tmpl is that you cant replace ${n} inside <> such as
<a href="details/?id=${id}">${name}</a>
the ${id} wouldnt get replaced..
Any ideas how to do that without having to use the <script>
tags, cause that isnt a good way to do it.
or even how to check a checkbox..
My template looks like this
<table id="lvList" class="grid1">
<tr>
<th>Name</th>
<th>Number</th>
<th>Type</th>
<th>Account Manager</th>
</tr>
<!-- itemtemplate -->
<tr>
<td>{{html $item.href('details/?id=$id')}}</td>
<td>${id}</td>
<td>${type}</td>
<td>${accmgr}</td>
</tr>
<!-- itemtemplate -->
</table>
if you want to know how I got the template from the table, you can see this post
ItemTemplate
Using that template, this is what I came up with
var items = $.tmpl(this.itemtemplate, data, {
href: function (url) {
for (i in this.data)
{ url = url.replace("$" + i, this.data[i]); }
return "<a href=\"" + url + "\">" + this.data["name"] + "</a>";
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论