JSON对象自我复制

时间:2013-06-14 08:40:30

标签: javascript jquery json html-table

我有这个JSON生成一个表:

function show(json)
{
    var content = '<table id = "myTable" border = 1>';
    var counter;

    for(counter = 0; counter < json.length ; counter++)
    {
        content += '<tr><td class = "topics">' + json[counter]['topic_name'] + '</td>''</tr>';
    }
    content += '</table>';

    $('#table_here').append(content);

}

我称之为两次: 1。在这里:

$(document).ready(function(){
$.getJSON("admin.php", show);

当我在桌面上添加一些东西时:

当我添加一些内容时,新表格会显示在旧表格下方,我想丢失旧表格,只看到新表格。我该怎么做?

1 个答案:

答案 0 :(得分:3)

尝试改变

$('#table_here').append(content);

$('#table_here').html(content);

这将替换#table_here元素

的全部内容