|
|
|
ช่วยเขียนเกี่ยวกับการเเบ่งตารางเป็น 2 ตารางในหน้าเดียวกันให้หน่อยครับ |
|
|
|
|
|
|
|
code ตัวอย่างครับ
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, MySQL, JavaScript, Ajax, jQuery, JAVA
|
ประวัติการแก้ไข 2018-06-17 18:51:07
|
|
|
|
|
Date :
2018-06-17 18:07:48 |
By :
Antinew |
View :
610 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบ่ง Column หรือว่ายังไงครับ
|
|
|
|
|
Date :
2018-06-18 10:27:03 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|