开发者

jQuery + parseDouble problem

开发者 https://www.devze.com 2022-12-16 14:09 出处:网络
I have an AJAX-request that returns a json object containing a few values with two decimals each, but since it\'s json these values are strings when returned. What I need to do is to perform addition

I have an AJAX-request that returns a json object containing a few values with two decimals each, but since it's json these values are strings when returned. What I need to do is to perform addition on these values. Just a simple a+b = c, but they concatenate instead becoming ab.

I was hoping I could use parseDouble in jQuery just like I 开发者_如何学Ccan use parseInt but apparantly I can't. At least not what I've found. So the question remains, is there any way I can add these two string values into a double or float value? Or should I just calculate this on the server side and send the already additioned value back to the browser and jQuery.

Example:

This is what happens 5.60 + 2.20 = 5.602.20

This is what should happen 5.60 + 2.20 = 7.80

Thankful for answers.


Just use parseFloat():

var c = parseFloat(a) + parseFloat(b);
0

精彩评论

暂无评论...
验证码 换一张
取 消