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

九九乘法表

时间:2019-08-21 23:22:23      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:head   type   har   style   乘法表   weight   write   var   乘法   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>九九乘法表</title>
<style>
td{
border: 1px solid red;
}
</style>
<script>
document.write("<table align=‘center‘>");
for (var i = 1; i <= 9; i++) {
document.write("<tr>");
for (var j = 1; j <= i; j++) {
document.write("<td>");
document.write(j + "*" + i + "=" + (i * j) + "&nbsp;&nbsp;&nbsp;");
document.write("</td>");
}
/*document.write("<br/>")*/
document.write("<tr>");
}
document.write("</table>")
</script>
</head>
<body>


</body>
</html>

九九乘法表

标签:head   type   har   style   乘法表   weight   write   var   乘法   

原文地址:https://www.cnblogs.com/newcityboy/p/11391738.html

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