在网页中打印一个99乘法表--JavaScript描述

Posted yangxcnweb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在网页中打印一个99乘法表--JavaScript描述相关的知识,希望对你有一定的参考价值。

99乘法表使用for循环,在很多公司的面试中常会要求面试者手写这个算法,算是比较经典的for循环的应用

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>99乘法表</title>
</head>
<script type="text/javascript">
document.write("<table border=‘1px‘>");
//循环行
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;");
document.write("</td>");

//document.write("</br>");
document.write("<tr>");

document.write("</table>");
</script>
<body>

</body>
</html>

运行效果:

技术图片

以上是关于在网页中打印一个99乘法表--JavaScript描述的主要内容,如果未能解决你的问题,请参考以下文章

JS基础_打印99乘法表

用JavaScript,写99乘法表;

shellLinux shell 之 打印99乘法表详解

99乘法表

python怎么打印99乘法表

PHP基础循环语句之打印99乘法表