使用db中的数据在javascript中填充表格

时间:2015-05-16 13:40:37

标签: javascript php json

我有一个html <table>,我需要填充数据库查询中的数据。查询返回10行,然后将数据发送到方法fill(data)以填充表格:

function getTopQ() {
    alert("Get top Qs");
    callServer('fill', 'checkConnection', false, 'SelectTopQues.php');
}

function fill(data) {
    alert("ready to fill now");
    $('#table').html('');

    var search = '#table';
    for (var i = 0; i < data.length; i++) {
        $('#table').listview("refresh");
        var Questions = data[i];

        var str = '<td " ID="' + Questions[0] + 
            '"  Question="' + Questions[1] + 
            '"     UserID="' + Questions[2] + 
            '"CategoryId"' + '" SubCategoryId"' + '" DatePosted"' + '"';

        str += '">'; //end li

        str += '<a href="" data-transition="fade">';


        str += Questions[1];

        str += '</a>';

        //str += '<span class="hiddenData">' + item[13] + '</span>';
        str += '</td>';

        $('#table').append(str);

        $('#table').listview("refresh");
    }
    console.log(data);
    console.log($('#table'));
    $('#table').listview("refresh");
}

0 个答案:

没有答案