简单教程
提交运行
代码编辑器:
<p id="demo">单击按钮显示正无穷大的数值</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var demo=document.getElementById("demo"); demo.innerHTML=Number.POSITIVE_INFINITY; } </script>
运行结果: