I have a textbox where a user inputs a number, like: 105.14 When开发者_如何学Go I use jQuery to read it:
alert(parseInt($("#Info").val()));
It displays "105".
Why can't I get the remaining .14????
I'm sure it's something obvious....
This is because you are using parseInt(), which is rounding.
Try parseFloat() instead.
精彩评论