|
|
|
ต้องการtextbox บวกตัวเลขอัตโนมัติ ตอนนี้เขียนแบบคูณกันอยู่ต้องการเปลี่ยนให้เป็นบวก ไม่ทราบว่าต้องการแก้ไขโค้ดตรงนั้นบ้างค่ะ |
|
|
|
|
|
|
|
Code (PHP)
function calc(row)
{
var txtprice = document.forms['autoSumForm'].elements['price[]'];
var txtamount = document.forms['autoSumForm'].elements['amount[]'];
var txttotal = document.forms['autoSumForm'].elements['total[]'];
var lentxt3 = txtamount.length;
var result3 = (txtamount[row].value * 1) ;
txtamount[row].value =result3 ;
var total3 = 0;
for(var i3=0; i3 < lentxt3; i3++)
{
txttotal[i3].value = addCommas((txtprice[i3].value*1)+(txtamount[i3].value*1).toFixed(2)); }
}
|
|
|
|
|
Date :
2013-04-06 15:41:59 |
By :
thep |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|