Dynamic generation of N rows and N columns of table tables using one-dimensional arrays

Source: Internet
Author: User
One-dimensional array dynamically generates N rows and N columns of table tables. Someone asked me a question just now. The question is roughly as follows:

Now we need to generate a table with seven columns. All the table content is stored in a JavaScript one-dimensional array in sequence. How can this problem be achieved?

I tried to write the following code. One is to be used as a souvenir, and the other is to use the code in the future.

The specific code and corresponding comments are as follows:

Var arr = []; var col = 7; // The table for generating 7 columns (var I = 0; I <25; I ++) {arr [I] = I;} // here is an example. In practice, we should specify the specific data var lines = Math. ceil (arr. length/col); // a key step. Here, var str ="

 

 
 
    "; // Header for (var j = 0; j 
  

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.