如何用javascript计算产品价格?

时间:2016-06-01 14:13:39

标签: javascript html count

我为学校建了一个网站:https://preview.c9users.io/tobiasleys/periode8/order/order.html。它是关于订购汉堡的。所有的汉堡都有不同的价格。当您选择两种类型的汉堡时,我想将奖品统计在一起并在页面上显示。我链接了一个名为firebase的数据库。当你点一个汉堡时,我可以看到它,这样才有效。但我如何计算价格?

谢谢!

1 个答案:

答案 0 :(得分:0)

你给了我们很多东西,但这是一个基于你的问题的粗略想法

/* Burger Object */
function Burger(price)
{
    this.price = price;
}
/* Array of Burgers */
a = [
    Burger(4),
    Burger(4.5),
    Burger(1)
]
/* Placeholder for total cost of Burgers */
total = 0;
/* Iterate over the Burgers array adding each Burger's price to the total */
for(i = 0; i < a.length; i++)
    total += a[i].price;
/* Shout out the price! */
alert(total);