在我的html页面中我有:
<script type="text/x-jQuery-tmpl" id="product_list_tmpl">
<label>
<input type="radio" name="radio1" id="radio${id}" value="${product_name}" >
<label for="radio${id}"></label>
</label>
</script>
<div id='product_list_div'>
</div>
<script>
...
success : function(xhr){
var jsonData = JSON.parse(JSON.stringify(xhr));
if(jsonData != null && jsonData.length) {
$.each(jsonData, function(index, item) {
var _options = {};
$("#product_list_tmpl").tmpl(item, _options).appendTo("#product_list_div");
...
</script>
jsonData的内容:
[{"id":"1","product_name":"prod1","price":"885"}
{"id":"2","product_name":"prod2","price":"425"}
{"id":"3","product_name":"prod3","price":"375"}
...
]
我的问题是:我可以从我的jquery / template获得产品价格:'product_list_tmpl'
即使我没有在其中使用它吗?