使用“数据”使用 jquery tempates 和“each”

发布于 2024-12-06 04:27:15 字数 738 浏览 1 评论 0原文

我正在使用 jquery 模板和 json 构建 Web 内容,并且正在寻找一种干净的方法来获取与使用这些模板构建的内容上的单击事件关联的 json 数据。存储的 tmplItem().data 是该模板的对象数组。当单击该列表中的某个项目时,我只想将该项目的 json 数据传递给单击事件处理程序。

目前我正在这样做:

<script id="ribbonTemplate" type="x-jquery-tmpl">
{{each(i, item) ribbon_data}}
   <img id='${i}' src="${thumbnail_url}" alt="${content_url}"/>
{{/each}}
</script>

    $(ribbonDiv).live('click', function(e){

       var clickItem = $(e.target);
       var tmplItem = clickItem.tmplItem();
       var imgId = clickItem.attr('id');
       var jsonBackingData = tmplItem.data['ribbon_data'][imgId];

       clickEvent(jsonBackingData);
    });

可行,但看起来有点笨拙。有没有一种方法不依赖于使用 id 选择器?

I'm building web content using jquery templates and json and I'm looking for a clean(er) way to get the json data associated with a click event on content that was built using those templates. The tmplItem().data that is stored is the array of objects for that template. When an item in that list is clicked, I want to pass just the json data for that item to a click event handler.

Currently I'm doing this:

<script id="ribbonTemplate" type="x-jquery-tmpl">
{{each(i, item) ribbon_data}}
   <img id='${i}' src="${thumbnail_url}" alt="${content_url}"/>
{{/each}}
</script>

and

    $(ribbonDiv).live('click', function(e){

       var clickItem = $(e.target);
       var tmplItem = clickItem.tmplItem();
       var imgId = clickItem.attr('id');
       var jsonBackingData = tmplItem.data['ribbon_data'][imgId];

       clickEvent(jsonBackingData);
    });

This works but it seems a bit clunky. Is there a way that doesn't depend on using the id selector?

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

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

发布评论

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