发布于 2015-07-31 15:04:59 | 126 次阅读 | 评论: 0 | 来源: 网络整理

Number.MIN_VALUE属性属于静态Number对象。这代表了尽可能小的正数的JavaScript可以工作的常量。

该常量的实际值是 5 x 10-324

语法

您可以使用以下语法访问属性:


var val = Number.MIN_VALUE;

实例 :

这里是表示该属性的使用的例子。


<html>
<head>
<script type="text/javascript">
<!--
function showValue()
{
   var val = Number.MIN_VALUE;
   alert("Value of Number.MIN_VALUE : " + val );
 
}
//-->
</script>
</head>
<body>
<p>Click the following to see the result:</p>
<form>
<input type="button" value="Click Me" onclick="showValue();" />
</form>
</body>
</html>

这将产生以下结果:

Value of Number.MIN_VALUE : 5 x 10-324
最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务