In web development, tables are a common element. Tables can be used to display data, perform data analysis and visualization, etc. When the data changes dynamically, we may need to continuously add new rows of data to the table. In JavaScript, we can dynamically add table rows in the following ways.
Preparation
Before we start writing the JavaScript code to add table rows, we need to define the basic structure of the table in the HTML file. For example:
<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>
In this example, we define a table containing two table rows and assign it an id
attribute to get the corresponding data in JavaScript. Table element.
Add table rows through DOM operations
We can add table rows through DOM operations. Specifically, we need to get the table element first, then create a table row element, and add the row to the tbody
element of the table.
// 获取表格元素 const table = document.getElementById('myTable'); // 创建新的表格行 const newRow = document.createElement('tr'); // 创建新的表格单元格并添加文本内容 const nameCell = document.createElement('td'); nameCell.textContent = 'Tom'; newRow.appendChild(nameCell); const ageCell = document.createElement('td'); ageCell.textContent = '35'; newRow.appendChild(ageCell); const cityCell = document.createElement('td'); cityCell.textContent = 'Chicago'; newRow.appendChild(cityCell); // 将新的行添加到表格中 const tbody = table.getElementsByTagName('tbody')[0]; tbody.appendChild(newRow);
In this example, we first obtain the table element with the ID myTable
, then create a new table row element, and add the text content. Finally, we get the tbody
element of the table and add the new table row to it.
Use innerHTML to add table rows
In addition to adding table rows through DOM operations, you can also use the innerHTML
attribute to quickly add a row of table data. Specifically, we can write the new table row data into an HTML string, and then assign the string to the innerHTML
attribute of the table.
// 获取表格元素 const table = document.getElementById('myTable'); // 定义新的表格行HTML字符串 const newRowHtml = '<tr><td>Tom</td><td>35</td><td>Chicago</td></tr>'; // 将HTML字符串添加到表格中 const tbody = table.getElementsByTagName('tbody')[0]; tbody.innerHTML += newRowHtml;
In this example, we first obtain the table element with the ID myTable
, and then define a new table row HTML string. Finally, we get the tbody
element of the table and add the HTML strings of the table rows to it.
Conclusion
In JavaScript, we can add table rows through DOM operations or innerHTML
attributes. In actual development, we should choose to use one of these methods according to the specific situation. No matter which method is used, we need to obtain the table elements first and ensure that the HTML structure and data format of the table are correct. By regularly checking the structure and data of your tables, you can avoid errors in your code and data errors.
The above is the detailed content of Add rows to javascript table. For more information, please follow other related articles on the PHP Chinese website!

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.

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

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

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

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

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.

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

Redux reducers are pure functions that update the application's state based on actions, ensuring predictability and immutability.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
