如何從金額中劃分%?我的意思是我想要js來計算打折價格,例如我有這個:JS從金額中劃分%折扣
var voucherdiscount='23';
var amount = ((qty*price) - voucherdiscount + %); it is wrong what is the right way?
謝謝!
如何從金額中劃分%?我的意思是我想要js來計算打折價格,例如我有這個:JS從金額中劃分%折扣
var voucherdiscount='23';
var amount = ((qty*price) - voucherdiscount + %); it is wrong what is the right way?
謝謝!
%
是JavaScript的remainder operator,和用於計算一個除法
13 % 4; // 1
這可以被讀作「13除以4等於3用的1
餘數」
附加的其餘部分注意:在大多數語言中,這稱爲「模數運算符」,但JavaScript實現它有點不同。有關更多詳細信息,請參閱this note。
可以計算總價這樣
qty * price * (1 - voucherdiscount/100)
金額=數量*價量的 23% - >(量* 23)/ 100
總價:(數量*價格) - (數量*價格*折扣)/ 100
我會在7分鐘內接受:) – thecore7