99乘法表

作者: 加冰宝贝 | 来源:发表于2018-06-21 09:43 被阅读3次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        span {
            width: 100px;
            line-height: 50px;
            text-align: center;
            display: inline-block;
            border: 1px solid black;
            background: paleturquoise;
        }
    </style>
</head>
<body>
<script>
    for (let i = 1; i <= 9; i++) {
        document.write("<br>")
        for (let j = 1; j <= i; j++) {
            document.write("<span>" + j + "*" + i + "=" + (j * i) + "</span>")
        }
    }

</script>

</body>
</html>

相关文章

网友评论

    本文标题:99乘法表

    本文链接:https://www.haomeiwen.com/subject/ktfqyftx.html