jQuery tmpl 插件

发布于 2024-12-07 16:51:44 字数 1253 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文