梦之都
JavaScript教程
Infinity
属性,表示无穷大的数值属性
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>JavaScript Infinity 属性示例</title> </head> <body> <script type="text/javascript"> document.write(Infinity); document.write("<br />"); document.write(Number.POSITIVE_INFINITY); document.write("<br />"); </script> </body> </html>