Home Web Front-end Front-end Q&A How to write a table in javascript

How to write a table in javascript

May 12, 2023 pm 08:09 PM

In front-end development, tables are one of the most common elements. JavaScript can be used to dynamically generate tables, which facilitates our control and operation of tables. Here are some common methods and techniques to help you better write JavaScript tables.

  1. Creation and modification of basic tables

The table is composed of HTML tags

, , , , < ;tr>,
and . If you want to create a table dynamically, you can generate the table by adding these tags.

The following is a simple example:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

<table id="myTable">

  <thead>

    <tr>

      <th>Name</th>

      <th>Age</th>

      <th>City</th>

    </tr>

  </thead>

  <tbody>

    <tr>

      <td>John</td>

      <td>25</td>

      <td>New York</td>

    </tr>

    <tr>

      <td>Jane</td>

      <td>30</td>

      <td>Los Angeles</td>

    </tr>

  </tbody>

</table>

Copy after login

After creating the table, you can modify the table. For example, you can add new rows and columns:

1

2

3

4

5

6

7

8

var table = document.getElementById("myTable");

var row = table.insertRow(2);

var cell1 = row.insertCell(0);

var cell2 = row.insertCell(1);

var cell3 = row.insertCell(2);

cell1.innerHTML = "Bob";

cell2.innerHTML = "40";

cell3.innerHTML = "Chicago";

Copy after login

The above code adds a new row to the table and fills in the information in each cell.

  1. Generate tables based on data

In actual development, we may need to dynamically generate tables based on some data. Suppose we have a JSON array that contains some student information, then we can dynamically generate a table by traversing the array.

The following is an example:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

var students = [

  {name: "John", age: 25, city: "New York"},

  {name: "Jane", age: 30, city: "Los Angeles"},

  {name: "Bob", age: 40, city: "Chicago"}

];

var table = document.createElement("table");

var thead = document.createElement("thead");

var tbody = document.createElement("tbody");

var tr = document.createElement("tr");

for (var key in students[0]) {

  var th = document.createElement("th");

  th.innerHTML = key.charAt(0).toUpperCase() + key.slice(1);

  tr.appendChild(th);

}

thead.appendChild(tr);

table.appendChild(thead);

for (var i = 0; i < students.length; i++) {

  var tr = document.createElement("tr");

  for (var key in students[i]) {

    var td = document.createElement("td");

    td.innerHTML = students[i][key];

    tr.appendChild(td);

  }

  tbody.appendChild(tr);

}

table.appendChild(tbody);

document.body.appendChild(table);

Copy after login

The above code first creates a DOM element containing a table, and then creates the table header and table body respectively. During the process of traversing the JSON array, elements are added row by row according to the format of the table header and table body.

It should be noted that the bold part in the code is used to capitalize the first letter of each key.

  1. Table sorting

Table sorting is one of the most common operations. Table sorting can be achieved through JavaScript.

The following is an example:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

function sortTable(n) {

  var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0;

  table = document.getElementById("myTable");

  switching = true;

  dir = "asc";

  while (switching) {

    switching = false;

    rows = table.rows;

    for (i = 1; i < (rows.length - 1); i++) {

      shouldSwitch = false;

      x = rows[i].getElementsByTagName("td")[n];

      y = rows[i + 1].getElementsByTagName("td")[n];

      if (dir == "asc") {

        if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) {

          shouldSwitch = true;

          break;

        }

      } else if (dir == "desc") {

        if (x.innerHTML.toLowerCase() < y.innerHTML.toLowerCase()) {

          shouldSwitch = true;

          break;

        }

      }

    }

    if (shouldSwitch) {

      rows[i].parentNode.insertBefore(rows[i + 1], rows[i]);

      switching = true;

      switchcount ++;

    } else {

      if (switchcount == 0 && dir == "asc") {

        dir = "desc";

        switching = true;

      }

    }

  }

}

Copy after login

The above code implements a function that sorts by a certain column of the table. The parameter n passed in represents the number of columns to be sorted.

  1. Table filtering

Table filtering is also a common operation. Data in the table can be filtered through JavaScript.

The following is an example:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

function filterTable() {

  var input, filter, table, tr, td, i, txtValue;

  input = document.getElementById("myInput");

  filter = input.value.toUpperCase();

  table = document.getElementById("myTable");

  tr = table.getElementsByTagName("tr");

  for (i = 0; i < tr.length; i++) {

    td = tr[i].getElementsByTagName("td")[0];

    if (td) {

      txtValue = td.textContent || td.innerText;

      if (txtValue.toUpperCase().indexOf(filter) > -1) {

        tr[i].style.display = "";

      } else {

        tr[i].style.display = "none";

      }

    }

  }

}

Copy after login

The above code implements a function that filters table data based on the value in the input box. By getting the value in the user input box, and then traversing the content of each cell in the table, if the content contains the value entered by the user, the row of data is retained, otherwise it is hidden.

To sum up, the above are some commonly used JavaScript codes to help you control and operate tables more conveniently. Of course, in actual development, there are more techniques and methods, and I hope you can explore and try them more.

The above is the detailed content of How to write a table in javascript. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is useEffect? How do you use it to perform side effects? What is useEffect? How do you use it to perform side effects? Mar 19, 2025 pm 03:58 PM

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Explain the concept of lazy loading. Explain the concept of lazy loading. Mar 13, 2025 pm 07:47 PM

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code? What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code? Mar 18, 2025 pm 01:44 PM

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

How does currying work in JavaScript, and what are its benefits? How does currying work in JavaScript, and what are its benefits? Mar 18, 2025 pm 01:45 PM

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

How does the React reconciliation algorithm work? How does the React reconciliation algorithm work? Mar 18, 2025 pm 01:58 PM

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

How do you prevent default behavior in event handlers? How do you prevent default behavior in event handlers? Mar 19, 2025 pm 04:10 PM

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

What is useContext? How do you use it to share state between components? What is useContext? How do you use it to share state between components? Mar 19, 2025 pm 03:59 PM

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

What are the advantages and disadvantages of controlled and uncontrolled components? What are the advantages and disadvantages of controlled and uncontrolled components? Mar 19, 2025 pm 04:16 PM

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.

See all articles