jQuery 模板从目标获取数据
我正在谈论这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
tmplItem 功能将为您执行此操作:http://api.jquery.com/tmplitem/
您可以做类似的事情:
然后像这样访问它:
The tmplItem functionality will do this for you: http://api.jquery.com/tmplitem/
you can do something like:
Then access it like: