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