标签: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+"×"+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