JavaScript decimal rounding a variety of methods to achieve the basic knowledge

Source: Internet
Author: User
Use JavaScript to take float type two digits after the decimal point, example 22.127456 to 22.13, how to do?
1. The Dumbest way
Copy Code code as follows:

function Get ()
{
var s = 22.127456 + "";
var str = s.substring (0,s.indexof (".") + 3);
alert (str);
}

2. Regular expression works well
Copy Code code as follows:

<script type= "Text/javascript" >
onload = function () {
var a = "23.456322";
var anew;
var re =/([0-9]+\.[ 0-9]{2}) [0-9]*/;
anew = A.replace (Re, "$");
alert (anew);
}
</script>

3. He's smarter ......
Copy Code code as follows:

<script>
var num=22.127456;
Alert (Math.Round (num*100)/100);
</script>

4. Friends who will use new things....... But it takes ie5.5+ to support it.
Copy Code code as follows:

<script>
var num=22.127456;
Alert (num.tofixed (2));
</script>
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.