jQuery 模板从目标获取数据

发布于 2024-10-28 16:30:31 字数 473 浏览 11 评论 0原文

我正在谈论这个 jquery-template http://api.jquery.com/jQuery.template/

var data={/*json*/};

//complie template
jQuery.template('some_name', jQuery('#templateId').html());

//fill elm with id=target.
jQuery('#target').html(jQuery.tmpl('some_name', data));

我的问题有什么方法可以从目标获取数据对象。我不是在寻找任何策略,而是在寻找一些内置的模板功能。

iam talking abt this jquery-template

http://api.jquery.com/jQuery.template/

var data={/*json*/};

//complie template
jQuery.template('some_name', jQuery('#templateId').html());

//fill elm with id=target.
jQuery('#target').html(jQuery.tmpl('some_name', data));

My question is there any way to get data object back from target. Iam not looking for any strategies rather some inbuilt templating functionality.

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

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

发布评论

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

评论(1

傾旎 2024-11-04 16:30:31

tmplItem 功能将为您执行此操作:http://api.jquery.com/tmplitem/

您可以做类似的事情:

var myTmplItem = $("#target").tmplItem();

然后像这样访问它:

myTmplItem.data

The tmplItem functionality will do this for you: http://api.jquery.com/tmplitem/

you can do something like:

var myTmplItem = $("#target").tmplItem();

Then access it like:

myTmplItem.data
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文