JS实现 九九乘法表

//为了美观,设置了一个表格
        document.write("<table>");
            //行遍历
            for(var r = 1;r<10;r++){
                document.write("<tr>");
                //列遍历
                for(var c = 1;c<=r;c++){
                document.write("<td>");
                //字符串拼接
                document.write(r + "×" + c +"=" +r*c );
                document.write("</td>");
            }
            document.write("<br>");
            document.write("</tr>");
        }
        document.write("</table>");

JS实现 九九乘法表

 /* 列表样式 */
        table{
            width: 500px;
            height: 400px;
        }
        tr{
            width: 50px;
            height: 30px;
        }
        td{
            width: 50px;
            height: 30px;
            border: 1px solid black;
        }

 

JS实现 九九乘法表

上一篇:netty网络框架


下一篇:ERROR: .FileNotFoundError: [Errno 2] No such file or directory: '.\\docker-compose.yml:docker-compose.apache.yml'