码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript制作九九乘法表

时间:2019-08-18 16:06:11      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:set   pad   col   mes   inf   gre   har   time   for   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>九九乘法表</title>
        <style type="text/css">
            ul,li{
                margin: 0;
                padding: 0;
                list-style-type: none;
            }
            
            span{
                display: inline-block;
                width: 100px;
                height: 30px;
                font-size: 16px;
                text-align: center;
                border: 1px solid green;
                line-height: 30px;
            }
        </style>
    </head>
    <body>
        <script type="text/javascript" src="js/jiujiu.js" ></script>
    </body>
</html>
document.write(‘<ul>‘);

for(var i=1; i<10; i++){
    document.write(‘<li>‘);
    for(var j=1; j<=i; j++){
        document.write(‘<span>‘ + j + ‘&times‘ + i*j + ‘</span>‘);
    }
    document.write(‘<li>‘);
}
document.write(‘</ul>‘);

 技术图片

JavaScript制作九九乘法表

标签:set   pad   col   mes   inf   gre   har   time   for   

原文地址:https://www.cnblogs.com/ooo888ooo/p/11372346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!