The method for using JavaScript to implement the trapezoid multiplication table, and the javascript Trapezoid
This example describes how to implement a trapezoid multiplication table using JavaScript. Share it with you for your reference. The details are as follows:
Shows the effect:
The table uses tables, tr, and td in html, and then uses the for statement to output rows and columns cyclically, and then perform multiplication based on the number of rows and columns. The first for loop outputs 9 rows, then, we embed a for statement, take the value of the first for loop in the conditional expression, and perform the output table operation. Why should we take the first for loop, because the number of times of the first for loop is the rule of trapezoid arrangement, the rule of trapezoid arrangement is a grid in the first row, two grids in the second row, three grids in the third row, and so on.
The complete code is as follows:
<! DOCTYPE html PUBLIC "-// W3C // dtd xhtml 1.0 Transitional // EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
I hope this article will help you design javascript programs.