更新子模板

发布于 2024-11-09 04:20:39 字数 861 浏览 0 评论 0原文

我有一个主模板,例如:

<script type="text/x-jQuery-tmpl" id="baseTmpl">
<tr>
    <td>${Name}</td>
    <td>
        <div id="${ID}">
            {{tmpl "#displayTmpl"}}
        </div>
    </td>
</tr>
</script>  

<script type="text/x-jQuery-tmpl" id="displayTmpl">
    <a id="myLink" href="javascript:changeTmpl(${ID})">${Department}</a>
</script>

<script type="text/x-jQuery-tmpl" id="editTmpl">
    <input type="text" id="text" value="${Department}" />
</script>

<script type="text/javascript">
    function changeTmpl(id) {
        var templateItem = $('#'+id).tmplItem();    
        templateItem.tmpl = editTemplate;
        templateItem.update();
    };
</script>

上面的代码在更新模板时也会删除所有 tr 数据。我想只更新 div 的内容而不是完整的 tr

I have a master template like:

<script type="text/x-jQuery-tmpl" id="baseTmpl">
<tr>
    <td>${Name}</td>
    <td>
        <div id="${ID}">
            {{tmpl "#displayTmpl"}}
        </div>
    </td>
</tr>
</script>  

<script type="text/x-jQuery-tmpl" id="displayTmpl">
    <a id="myLink" href="javascript:changeTmpl(${ID})">${Department}</a>
</script>

<script type="text/x-jQuery-tmpl" id="editTmpl">
    <input type="text" id="text" value="${Department}" />
</script>

<script type="text/javascript">
    function changeTmpl(id) {
        var templateItem = $('#'+id).tmplItem();    
        templateItem.tmpl = editTemplate;
        templateItem.update();
    };
</script>

The above code remove all tr data as well and when I update the template. I want to update the content of just the div rather than full tr

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七婞 2024-11-16 04:20:39

在基本模板中,ID 应该引用 tr,而不是 div

<tr div id="${ID}">
....
</tr>

目前,当您选择 var templateItem = $('#'+id).tmplItem(); 时,它只会拉出 div,因为这就是id 指的是。

In the base template, the ID should refer to the tr, not the div

<tr div id="${ID}">
....
</tr>

At the moment, when you select var templateItem = $('#'+id).tmplItem();, it only pulls out the div because that is what the id refers to.

两相知 2024-11-16 04:20:39

当您执行此操作时:

var templateItem = $('#'+id).tmplItem(); 

您将获得 div 的 tmplItem,它实际上与该模板呈现的所有内容相同的 tmplItem(整个 )。

您想要访问 div 内元素的 tmplItem。这会起作用:

var templateItem = $('#'+id).children(":first").tmplItem(); 

When you do this:

var templateItem = $('#'+id).tmplItem(); 

You are getting the tmplItem of the div, which is actually the same tmplItem for everything rendered by that template (the whole <tr>).

You want to access the tmplItem of the elements inside the div. This would work:

var templateItem = $('#'+id).children(":first").tmplItem(); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文