/*计算总价格*/
var totalPrice=0;
for(var a=1;a<3;a++){
var quantity=document.getElementById("quantity"+a).value;
var price=document.getElementById("price"+a).value;
var smallTotal=quantity*price;
totalPrice=totalPrice+smallTotal;
}
var total=document.getElementById("total");
total.innerHTML=totalPrice;
}
商品名称 | 图片 | 数量 | 价格 | 小计 |
商品1 | 20 | 元 | ||
商品2 | 30 | 元 | ||
总计: 元 |