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

第十八天

时间:2016-12-07 01:12:39      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:enter   order   javascrip   body   class   java   asc   ++   str   

今天花了两堂课弄懂的99乘法表。感觉自己帮帮哒。

<body>
<script type="text/javascript">
    var str=<table width="600" align="center" border="1">
    for(var i=1; i<10;i++){
        str +="<tr>";
        for(var j=1;j<=i;j++){
        str +="<td>"+j+"&times"+i+"="+(i*j)+"</td>";
        }
        str+="</tr>"
        
    
    }
        str +="</table>";
        document.write(str);
</script>
</body>

 

第十八天

标签:enter   order   javascrip   body   class   java   asc   ++   str   

原文地址:http://www.cnblogs.com/bennykiss/p/6139413.html

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