我有這樣的JSON結果這個HTML:寫的這個JSON結果(解析JSON)
{
"html_content": [
[
[
"Navegantes",
"11",
"8",
"3",
"0"
]
],
[
[
"Tigres",
"11",
"8",
"3",
"0"
]
],
[
[
"Caribes",
"11",
"6",
"5",
"2"
]
],
[
[
"Leones",
"11",
"6",
"5",
"2"
]
],
[
[
"Aguilas",
"11",
"5",
"6",
"3"
]
],
[
[
"Tiburones",
"10",
"4",
"6",
"3.5"
]
],
[
[
"Cardenales",
"10",
"3",
"7",
"4.5"
]
],
[
[
"Bravos",
"11",
"3",
"8",
"5"
]
]
]
}
而且我需要建立,對於每一個HTML標記像這樣的:
<tr>
<td>Navegantes</td>
<td>11</td>
<td>8</td>
<td>3</td>
<td>0</td>
<td>
<span class="glyphicon glyphicon-play"></span>
<span class="glyphicon glyphicon-stop"></span>
</td>
</tr>
<tr>
<td>Tigres</td>
<td>11</td>
<td>8</td>
<td>3</td>
<td>0</td>
<td>
<span class="glyphicon glyphicon-play"></span>
<span class="glyphicon glyphicon-stop"></span>
</td>
</tr>
而且等等,我做了這樣的代碼:
$.each(data.html_content, function(i, v) {
htm += "here goes the HTML code";
});
但是這不起作用我認爲由於數組類型,可以提供任何幫助嗎?
你需要序列化json來對象並使用該對象來創建html – Miller
好時機查看knock outjs或者angularjs。 – lucuma
爲什麼每個子數組都有自己的子數組? – h2ooooooo