用JS代码怎么实现两个文本框的Value相乘?

2024-12-23 10:09:21
推荐回答(3个)
回答1:

num1 = document.getElementById('input1').value;//获取第一个文本框的值
num2 = document.getElementById('input2').value;//获取第二个文本框的值
alert(parseInt(num1)*parseInt(num2));//计算乘积并弹出
这种是简单的,复杂些的,是先判断是不是数字,是的话再计算,不是的话会提示错误的。

回答2:


商品名称
个数
单价
总金额







回答3:

function totalprice(){
var num = document.getElementById("geshu").value;
var price= document.getElementById("danjia").value;
var total = document.getElementById("total");
var totalMoney = 0;
if(num!=""&&price!=""){//这里最好再做个数字和金额的校验
totalMoney = num*price;
}
total.innerHTML = totalMoney ;
}