[JS7] 显示从0到99的100个数字


 

[JS7] 显示从0到99的100个数字
<html>
<head>
    <title>JS Unleashed</title>
</head>
<body>
    <SCRIPT TYPE="text/JavaScript">
        <!--
            //写一个标题
            document.write("显示从0到99的100个数字:");
            document.write('<hr size="0" width="50%" align="left">');
            for(var i=0;i<100;i++){
                if(i%10==0){
                    document.write('<br>');
                }
                document.write(i+",");
            }
        //-->
    </SCRIPT>
</body>
</html>
[JS7] 显示从0到99的100个数字


上一篇:MAC在Finder栏显示所浏览文件夹路径的方法


下一篇:MongoDB索引管理——创建索引,查看索引,删除索引,重建索引