码迷,mamicode.com
首页 > Web开发 > 详细

js经典小案例----乘法表

时间:2019-08-24 13:42:55      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:isp   ntb   :hover   col   tput   body   splay   lin   rip   

<style>
        #output span {
            display: inline-block;
            width: 100px;
            height: 40px;
            margin: 5px;
            line-height: 40px;
            text-align: center;
            background-color: #ccc;
        }

        #output span:hover {
            background-color: #fc0;
            color: #fff;
        }
    </style>
</head>

<body>
    <h1>打印99乘法表</h1>
    <div id="output">
       
    </div>
</body>
<script>
  var output = document.getElementById(‘output‘);
    var html = ‘‘;//准备存放字符串
    for (var i = 1; i <= 9; i++) {
        //外循环:循环行数
        for (var j = 1; j <= i; j++) {
            //内循环:循环列数
            html += ‘<span>‘ + i + ‘x‘ + j + ‘=‘ + i * j + ‘</span>‘;
        }
        html += ‘<br />‘;
    }
    output.innerHTML = html;
</script>

适合刚学js的,锻炼一下逻辑

js经典小案例----乘法表

标签:isp   ntb   :hover   col   tput   body   splay   lin   rip   

原文地址:https://www.cnblogs.com/muyun123/p/11404064.html

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