如何通过从php接收json响应来生成带有jquery的动态表

时间:2014-04-28 05:24:31

标签: php jquery ajax

我希望我的输出格式如下。我的设计应该如下。Output

我想帮助设计上述方法。请任何人都可以帮助我。我将rollno存储在student表中,将marks存储在marks表中。标记表包含对student rollno的引用。

如何使用php将json值发送到jquery ajax并将响应分配给页面?

或者,如果您有任何其他方法可以执行此操作。请同意。提前谢谢。

1 个答案:

答案 0 :(得分:2)

试试吧,

$(function(){
    $.ajax({
       url:'getStudMarks.php',
       data:{rollNo:'19GH24'},// get marks of student 19GH24 
       type:'POST',
       success:function(data){
          $('table tbody').html(data);
       }
    });
});

getStudMarks.php页面中返回您的数据,

<tr><td>C</td><td>90</td><td>98</td></tr>;

对于多个表,您需要提供table id之类的

<table id="table-19GH24">
    <thead>
       ....
    </thead>
    <tbody>....</tbody>
</table>

success callback中使用rollno喜欢,

$('#table-19GH24 tbody').html(data);