代码编辑器:
x
1
<p id="demo">单击按钮来显示格式化的数字</p>
2
<button onclick="myFunction()">点我</button>
3
<script>
4
function myFunction(){
5
var num = new Number(13.3714);
6
var n = num.toPrecision(2);
7
var x = document.getElementById("demo");
8
x.innerHTML=n
9
}
10
</script>
11