for循环实现乘法口诀表
Posted baiweisuye
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for循环实现乘法口诀表相关的知识,希望对你有一定的参考价值。
<style>
table{
border-collapse:collapse;
}
table,th, td{
border: 1px solid black;
}
</style>
<body>
<script>
document.write("<table cellpadding=‘10‘ cellspacing=‘0‘>");
for(var j=1;j<=9;j++){
document.write("<tr>")
for(var i=1;i<=j;i++){
document.write("<td>"+j+"×"+i+"="+i*j+"</td>");
}
document.write("</tr>");
}
document.write("</table>");
</script>
</body>
- 折叠边框:border-collapse 属性设置是否将表格边框折叠为单一边框
以上是关于for循环实现乘法口诀表的主要内容,如果未能解决你的问题,请参考以下文章