如何使用 JQuery 将数据从 JSON 数组动态添加到 HTML 表
我创建了一个 HTML 表
<table id="top_five_table">
<tr>
<td> </th>
<th>URL</th>
<th width="90">Total Hits</th>
<th width="380">Percentage of all Hits</th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
,这是我
json_object = None
json_object = {'url_name': url_name, 'total_count': entity.total,\
'url_id': url_id,
'percentage': percentage, 'facebook_count': entity.facebook_count,\
'twitter_count': entity.twitter_count, \
'buzz_count': entity.buzz_count, \
'linkedin_count': entity.linkedin_count, \
'digg_count': entity.digg_count,\
'delicious_count': entity.delicious_count,\
'reddit_count': entity.reddit_count}
json_array.append(json_object)
从 java 脚本提取 json 对象的 json 对象数组,如下所示,
var json_array = data.json_array;
var table = document.getElementById('top_five_table');
var rowCount = table.rows.length;
var colCount = table.rows[0].cells.length;
我不会使用 Java 脚本或 JQuery 动态填充我的 HTML 数据表,而且我对这两种技术非常陌生。我不知道如何动态填充表。有人可以帮忙吗?
I have created a HTML table
<table id="top_five_table">
<tr>
<td> </th>
<th>URL</th>
<th width="90">Total Hits</th>
<th width="380">Percentage of all Hits</th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
and this is my json object array
json_object = None
json_object = {'url_name': url_name, 'total_count': entity.total,\
'url_id': url_id,
'percentage': percentage, 'facebook_count': entity.facebook_count,\
'twitter_count': entity.twitter_count, \
'buzz_count': entity.buzz_count, \
'linkedin_count': entity.linkedin_count, \
'digg_count': entity.digg_count,\
'delicious_count': entity.delicious_count,\
'reddit_count': entity.reddit_count}
json_array.append(json_object)
from a java script im extracting the json object as follows
var json_array = data.json_array;
var table = document.getElementById('top_five_table');
var rowCount = table.rows.length;
var colCount = table.rows[0].cells.length;
I wont to populate my HTML Data table dynamically using Java script or JQuery and im so new to these two technologies. I do not know how populate the table dynamically . Can any one help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是基础知识,您只需更改数据内容即可。
The basics off this is below you will just need to change content to your data.