number format : Number Format « Mochkit « JavaScript DHTML






number format

 
<!--
MochiKit is dual-licensed software.  It is available under the terms of the
MIT License, or the Academic Free License version 2.1.  The full text of
each license is included below.
-->

<!-- Code revised from MochiKit demo code -->

<html>
<head>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Base.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Iter.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/DOM.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Style.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Logging.js"></script>
    <script type="text/javascript" src="MochiKit-1.4.2/lib/MochiKit/Format.js"></script>
</head>
<body>

<pre id="test">
<script type="text/javascript">
    var nf = numberFormatter("$###,###.00 footer");
    alert( nf(1000.1));
    alert( nf(1000000.1));
    alert( nf(100));
    alert( nf(100.555));
    alert( nf(-100.555));

</script>
</pre>
</body>
</html>

   
  








Related examples in the same category

1.custom neg
2.leading and trailing
3.default placeholder
4.Custom place holder
5.trivial percent
6.custom locale
7.large number format
8.Sum works on Arrays