我在语法方面遇到了一些问题,我是新手,所以也许可以通过其他方法修复。
我已经开始更改此代码: Pricing Slider by amirolahmad
我想要的就是这件事:Table with values
例如,如果你设置滑块$ amount值1555并且滑块$ duration值为2012 - > $ total,在底部必须显示1000.
以下是我对第一栏的理解:
$total = "$" + (10);
if ($amount <= 1199 && $duration >= 2016) {$total = (100);}
else if (1499 >= $amount >= 1199 && $duration >= 2016) {$total = (500);}
else if (1999 >= $amount >= 1500 && $duration >= 2016) {$total = (900);}
else if (2499 >= $amount >= 2000 && $duration >= 2016) {$total = (1300);}
else if (2999 >= $amount >= 2500 && $duration >= 2016) {$total = (1700);}
else if (3499 >= $amount >= 3000 && $duration >= 2016) {$total = (2100);}
else if (3999 >= $amount >= 3500 && $duration >= 2016) {$total = (2500);}
else if ($amount >= 4000 && $duration >= 2016) {$total = (2900);}
如果我将在第44和第60行之间输入,我无法获得令人满意的结果。 是否可以在“else if”上执行此操作?或者我需要做数组或什么?
亲切的问候,js newbie。