码迷,mamicode.com
首页 > 其他好文 > 详细

2016/12/05

时间:2016-12-07 23:00:12      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:time   tab   str   table   meta   style   height   cell   var   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <script type="text/javascript">
    var a = 1;
    var b = 1;
    var str = "<table width=‘500px‘ height=‘200px‘ cellspacing=‘10‘>";
    while (a<10) {
            str += "<tr>"
                while(b<=a){
                    str += "<td>"+b+"&times"+a+"="+(a*b)+"</td>"
                    b++
                }
            str += "</tr>"
            a++
            b =1;
        }    
            str += "</table>"
            document.write(str);
    </script>
</body>
</html>

 

2016/12/05

标签:time   tab   str   table   meta   style   height   cell   var   

原文地址:http://www.cnblogs.com/ccssnn/p/6142964.html

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