我有問題可以將數據從javascript加載到html表中。 因此,這裏是我的Java腳本代碼...將數據從JavaScript加載到html表中
//success data
$('#A').empty();
$.each(data, function(index, aObj){
//$('#A').append('<option value="' + aObj.id + '">'+aObj.note+'</option>');
$('#A').append('<tr><td style="' + aObj.id + '">'+aObj.note+'</td style></tr>');
});
的//期權價值在選擇框的作品。但現在我想將aObj.note放入td樣式標籤之間的表格中。
table class="table table-bordered table-striped" name="A" id="A">
thead>
tr>
th class="">Note/th>
/tr>
/thead>
tbody>
@foreach($alleSpiele as $alleSpieleOutput)
tr>
td style="">/td style>
/tr>
@endforeach
/tbody>
/table>