Understanding innerHTML

Understanding innerHTML
<br />Related articles: innerHTML
HTML DOM insertRow() Method
Definition and Usage
Definition and Usage
The insertRow() method is used to insert a new row at a specified position in a table.
The insertRow() method can be used to insert a new row at a specified position in the table.
Syntax
tableObject.insertRow(index) //Index, add a new row
--------------------------------------------------------------------------------
Example
<html>
<head>
<script type="text/javascript">
function insRow()
{
document.getElementById('myTable').insertRow(0) //Find the control in the document
}
</script>
</head>
<body>
<table id="myTable" border="1">
<tr>
<td>Row1 cell1</td>
<td>Row1 cell2</td>
</tr>
<tr>
<td>Row2 cell1</td>
<td>Row2 cell2</td>
</tr>
</table>
<form>//Place controls in the form
<input type="button" onclick="insRow()"
value="Insert new row before the first row">//value is the content to be displayed on the control
</form>
</body>
</html>
In the js method, you can directly use the id.innerHtml of the paired tags to assign the tag content without declaring variables in the js method.
innerHTML is an attribute of the html tag. Most of the tags that appear in pairs have this attribute. //The tag attribute is the characters between the start tag and the end tag, not including the tag itself. For example
<p id="pp">aaaaaaaaaaa<span id="ss">bbbbbbbb</span> </p>
Here the p tag and span tag are nested together, so the content of pp.innerHTML is
aaaaaaaaaaa<span id="ss">bbbbbbbb</span>
The content of ss.innerHTML is
bbbbbbbb
=========================
A similar property is outerHTML
Then the content of pp.outerHTML is
<p id="pp">aaaaaaaaaaa<span id="ss">bbbbbbbb</span> </p>
The content of ss.outerHTML is
<span id="ss">bbbbbbbb</span>

<<:  How to safely shut down MySQL

>>:  Multi-service image packaging operation of Dockerfile under supervisor

Recommend

MySQL chooses the appropriate data type for id

Table of contents Summary of Distributed ID Solut...

Detailed explanation of how Nginx works

How Nginx works Nginx consists of a core and modu...

How to manually build a new image with docker

This article introduces the method of manually bu...

Example of converting JS one-dimensional array into three-dimensional array

Today I saw a friend asking a question in the Q&a...

Solution to the long delay of MySQL database master-slave replication

Preface The delay of MySQL master-slave replicati...

Example sharing of anchor tag usage in HTML

Anchor tag usage: Linking to a specific location i...

Native JS to achieve sliding button effect

The specific code of the sliding button made with...

Several specific methods of Mysql space cleaning

Table of contents Preface 1. Check the file disk ...

Detailed installation process of mysql5.7.21 under win10

This article shares the installation of MySQL 5.7...

Mysql GTID Mha configuration method

Gtid + Mha + Binlog server configuration: 1: Test...

A brief introduction to Tomcat's overall structure

Tomcat is widely known as a web container. It has...

js precise calculation

var numA = 0.1; var numB = 0.2; alert( numA + num...

How to set up Windows Server 2019 (with pictures and text)

1. Windows Server 2019 Installation Install Windo...

Implementation of mysql backup strategy (full backup + incremental backup)

Table of contents Design scenario Technical Point...