创建jquery复合计算器

时间:2011-09-12 12:28:01

标签: javascript jquery

在下面提到的计算器中使用了什么样的公式

https://www.lifeclub.com/public/calculator.aspx

我正在尝试使用jquery创建一个类似的计算器。我正在努力使配方正确。

如何在表格上计算利息。 什么是公式

我尝试过尝试..但我的数字与他们的数字不符 http://jsbin.com/oxerez/edit#javascript,html,live

1 个答案:

答案 0 :(得分:2)

总投资是初始投资和额外的每月投资。

获得的总利息是每月计算1%的利息并将其加到总数中,并将其减1%等等。

平均每月回报是所有加起来的利息除以月数,12年为1年,24年为2年等。

总余额是总投资和总利息加在一起。

var initial_investment = 100,
    additional_monthly_invest = 0,
    interest_rate = 1,
    terms_of_investment = 1,
    total_invested = initial_investment,
    interest_earned = 0,
    total_interest_earned,
    average_month_return,
    total_balance,
    i = terms_of_investment * 12 + 1;

while ( i -= 1 ) { // optimisation habit I've gotten into
    interest_earned += ( ( ( total_invested + interest_earned ) / 100 ) * interest_rate );
    total_invested += additional_monthly_invest;
}

average_month_return = interest_earned / ( terms_of_investment * 12 );

total_balance = total_invested + interest_earned;

更新:修正了代码。我忘了在兴趣中添加一些变量。立即行动。