|
|
|
รบกวนแนะนำการดึงข้อมูลมาเเสดงในตาราง 2 ตารางที่หัวข้อเหมือนกันเเต่ข้อมูลต่างกันให้หน่อยค่ะ |
|
|
|
|
|
|
|
หนูต้องการจะดึงข้อมูลมาเเสดงในตาราง ซึ่งจะมีอยู่ 2 ตารางด้วยกัน โดยจะดึงข้อมูลจาก database มาเเสดง ซึ่งในเเต่ละตารางจะอยู่ในหน้าเดียวกัน โดยที่หัวข้อในตารางจะเป็นหัวข้อเดียวกัน เเต่เนื้อหาจะไม่เหมือน โดยเนื้อหาจะกำหนดโดยตัวแปร 0 ,1 ในการแบ่งเนื้อหา
นี้คือ code ของตารางเเรก ซึ่งตารางที่ 2 หัวข้อจะเหมือนกับตารางเเรก เเต่เนื้อหาภายในจะไม่เหมือนกัน รบกวนเเนะนำด้วยคะ
Code
<center>
<table width="300" border="1" id="myTable">
<thead>
<tr>
<td> <div align="center">id</div></td>
<td width="px"> <div align="center">date </div></td>
</tr>
</thead>
<tbody></tbody>
</table>
<script>
function Process()
{
$.ajax({
type : 'get',
datatype: "json",
data: {
'function' : "Process"
},
success : function(data) {
$table = $('#myTable > tbody:last-child');
$.each(data, function(key, val) {
$tr = "<tr>";
$tr = $tr + "<td> + (val.id) + "</td>";
$tr = $tr + "<td>" + (val.date) + "</td>";
$tr = $tr + "</tr>";
$table.append($tr);
});
}
});
}
$(function() {
Process();
});
</script>
</center>
Tag : PHP, HTML5, JavaScript, Ajax, jQuery, JAVA
|
ประวัติการแก้ไข 2018-06-17 18:09:43
|
|
|
|
|
Date :
2018-06-16 18:05:42 |
By :
Antineww |
View :
714 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าจะง่ายๆ ก็ทำขึ้นมา 2 ชุดครับ
|
|
|
|
|
Date :
2018-06-18 10:41:34 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<meta charset="utf-8">
<table width="100%" border="1">
<tr>
<td colspan="2">หัวข้อ</td>
<tr>
<td>
include ข้อมูลตัวที่ 1111
</td>
<td>
include ข้อมูลตัวที่ 22222
</td>
</tr>
</table>
|
|
|
|
|
Date :
2018-06-19 11:08:17 |
By :
nobetaking |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|