|
|
|
ถ้าดึงข้อมูลในฐานข้อมูลมาแก้ไขตัวเลขในช่อง b1และ b2 แต่ผลลัพธ์ที่ b3 ไม่เปลี่ยน เป็นเพราะอะไรครับ |
|
|
|
|
|
|
|
ตัวอย่าง
Code (PHP)
<table>
<tr>
<td><input type="number" id="a1" rel='1' value="1"></td>
<td><input type="number" id="b1" rel='1' value="2"></td>
<td><input type="text" id="total_1" value="3" disabled></td>
</tr>
<tr>
<td><input type="number" id="a2" rel='2' value="10"></td>
<td><input type="number" id="b2" rel='2' value="20"></td>
<td><input type="text" id="total_2" value="30" disabled></td>
</tr>
</table>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(function(){
$('input[type=number]').on('keyup',function(){
total($(this).attr('rel'));
});
});
function total(rel){
var total=0;
total=parseInt($('#a'+rel).val())+parseInt($('#b'+rel).val()); // condition
$('#total_'+rel).val(total);
}
</script>
|
ประวัติการแก้ไข 2017-06-19 16:54:18
|
|
|
|
Date :
2017-06-19 16:53:15 |
By :
dudesaranyu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เหมือน function calc(box) ยังไม่เกิดขึ้น ค่าในช่องที่ 3 เลยไม่เปลี่ยนตามต้องการ
|
|
|
|
|
Date :
2017-06-19 16:55:27 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|