admin管理员组文章数量:1340361
Is it possible say a person enters an integer value 5 in a Textbox
and automaticall a .00 is added in the end say 5.00
<asp:TextBox ID="txtAmountTransfer" runat="server" Width="55%" CssClass="right"></asp:TextBox>
Is it possible say a person enters an integer value 5 in a Textbox
and automaticall a .00 is added in the end say 5.00
<asp:TextBox ID="txtAmountTransfer" runat="server" Width="55%" CssClass="right"></asp:TextBox>
Share
Improve this question
asked Dec 3, 2012 at 17:14
vinivini
4,74024 gold badges84 silver badges176 bronze badges
1
- When do you want the automatic formatting to take place? When the field looses focus? – bfavaretto Commented Dec 3, 2012 at 17:46
2 Answers
Reset to default 9You can use .toFixed(2)
which will add the zero's
see this for an example js Fiddle
@CR41G14 is correct. .toFixed(2) is all you need.
As far as where and how, I would remend using the change event on the input box as it is the least intrusive for the user. (The blur event would also not be unreasonable)
Since the value of the text field will be a string you will need to parse it as @Snuffleupagus points out. In your case, I would remend parseFloat because then your field could potentially handle the user entering 5.2 which could bee 5.20. (using parseInt you would end up with 5.00).
One additional note is recognizing that if the user types non-numeric characters (or really any value that will not parse) into the field, it will result in a display of NaN, which actually seems fairly reasonable in your case.
Using jQuery:
$('#txtAmountTransfer').change(function(){
$(this).val(parseFloat($(this).val()).toFixed(2))
});
Similar example using native code:
var textField = document.getElementById('txtAmountTransfer');
textField.onchange = function(){
this.value = parseFloat(this.value).toFixed(2);
}
本文标签: cAdd 00 to an int number using javascriptStack Overflow
版权声明:本文标题:c# - Add .00 to an int number using javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743625267a2512184.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论