js经典小案例----乘法表
Posted muyun123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js经典小案例----乘法表相关的知识,希望对你有一定的参考价值。
<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经典小案例----乘法表的主要内容,如果未能解决你的问题,请参考以下文章
夺命雷公狗-----React---22--小案例之react经典案例todos(上)