我在项目上工作,需要将数组中的值从json分配给多个表中的特定ID。
如下所示,在标题和赔率中包含ID的html。并且你可以看到我为这个特定的html写死了因此我需要从后端检索特定的标题和赔率将根据后端给定的值进行更改。
HTML
<tr><th class="GB1_0 name" id="t_B1_0" title="第一球 0"><input type="hidden" id="k_B1_0" value="BALL"><span class="b0">0</span></th>
<td class="GB1_0 odds" id="o_B1_0">9.93</td>
<td class="GB1_0 amount ha"><input name="B1_0" class="ba"></td>
</tr>
我们怎么做?请建议谢谢你
答案 0 :(得分:2)
这是你在找什么?
<script>
$( document ).ready(function() {
var jsonObj = {
B1_0 : 9.93,
B1_1 : 9.95,
B1_2 : 9.94
};
$.each(jsonObj, function (index, value) {
console.log(index);
console.log(value);
$("#o_"+index).html(value);
});
});
</script>