0

JSONデータソースからテーブルフッターに動的にデータを入力する必要があります。これがテーブルの構造です

<table  id="example_table">
<tfoot id="example_footer">
<tr id="example-footer" style="font-weight:bold">
<th></th>
<th></th>
<th></th>
<th></th>                                           
<th></th>
</tr>
</tfoot>  
</table>

以下のようにjQueryでappend()を使用する予定です。

$('#example_footer').append( '<tr>...</tr>' );

誰かがtfooterにアクセスし、その内容としてjs変数から値を割り当てる方法を教えてもらえますか

4

1 に答える 1

1

実際には、JSONがどのように構造化されているかによって異なります。変数'data'で受信され、5つの要素があるとすると、javascriptは次のようになります。

var tr = '<tr>';
tr+= '<th>'+data.element1+'</th>';
tr+= '<th>'+data.element2+'</th>';
tr+= '<th>'+data.element3+'</th>';
tr+= '<th>'+data.element4+'</th>';
tr+= '<th>'+data.element5+'</th>';
tr+= '</tr>';
$('#example_footer').append(tr);
于 2012-10-25T15:03:56.417 に答える