我希望我的输出格式如下。我的设计应该如下。
我想帮助设计上述方法。请任何人都可以帮助我。我将rollno
存储在student
表中,将marks
存储在marks
表中。标记表包含对student rollno
的引用。
如何使用php将json值发送到jquery ajax并将响应分配给页面?
或者,如果您有任何其他方法可以执行此操作。请同意。提前谢谢。
答案 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);