Вопрос

Guys I got a text box wherein users may enter valid decimal numbers.

And later I have to do calculations with this decimal number without rounding it.

Currently I am working as

 var pricePerItemExVat = Math.round($("#InnerCaseWsp").val()) / Math.round($("#InnerCaseItemSellUnit").val());

How do I do the same without rounding the number ?

Это было полезно?

Решение

It looks like you used Math.round to get numbers from strings.

Just parse the strings to numbers using parseFloat :

var pricePerItemExVat = parseFloat($("#InnerCaseWsp").val()) / parseFloat($("#InnerCaseItemSellUnit").val());
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top