function doMath() {
var i = 1;
var nValue; var amount;
var price=100;
nValue = document.getElementById("message"+i).value;
if(i<nValue.length){
amount=(nValue*price);
console.log("จำนวนรวม"+amount);
document.getElementById("total"+i).value=amount ;
i++;
}
}
@NewbieXYZ
ผมลองใส่แล้วมันให้ผมลบ ตัว value ของ message ไม่ได้อะครับ พอผมลองลบ value ออกแล้ว มันก็ไม่ Error และก็พอใส่ตัวเลขลงไปก็ไม่เกิดอะไรขึ้นอะครับ Code (JavaScript)
function doMath(i) {
var nValue; var amount;
var price=100;
nValue = document.getElementById("message"+i);
if(i<nValue){
amount=(nValue*price);
console.log("จำนวนรวม"+amount);
document.getElementById("total"+i).value=amount ;
i++;
}
}