*Create a page: two input boxes and a button
The code is as follows: <html> <head> <title>Dynamically generate table</title> <style type = "text/css"> </style> </head> <body> Line: <input type="text" id="h"/><br/> Column: <input type="text" id="l"/><br/> <input type="button" value="Generate" onclick="add1()"/> <div id="divv"> </div> </body> <script type="text/javascript"> function add1(){ /* 1. Get the input row and column values 2. Generate a table - Loop through rows - Loop through cells in a row 3. Display on the page - Use the innerHTML attribute to set the table code inside a div */ var h =document.getElementById("h").value; //alert(h); var l =document.getElementById("l").value; var tab = "<table border='1' bordercolor='red'>"; for(var i=0;i<h;i++){ tab += "<tr>"; for(var j=0;j<l;j++){ tab +="<td>aaaa</td>" } tab +="</tr>" } tab +="</table>"; var div1 = document.getElementById("divv"); div1.innerHTML = tab; } </script> </html> Effect diagram demonstration: SummarizeThis article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: Binary Type Operations in MySQL
>>: Docker Gitlab+Jenkins+Harbor builds a persistent platform operation
The a tag is mainly used to implement page jump, ...
Table of contents 1. Problem Description 2. Probl...
This article example shares the specific code of ...
Table of contents Preface What are dynamic proper...
js interesting countdown case, for your reference...
Table of contents Introduction Uses of closures C...
mysql copies the files in the data directory to r...
Table of contents question extend Solving the pro...
Table of contents 1. Problem 2. Solution 2.1 Pagi...
This article shares the specific code of JavaScri...
First, download the installation package from the...
First of all, what is a font icon? On the surface...
Table of contents Preface Solution Tool Introduct...
In today's development environment, fast is b...
1. The catalina.bat must be set to UTF-8. If I do...