Simple example of adding and removing HTML nodes

Simple example of adding and removing HTML nodes

Simple example of adding and removing HTML nodes Simple example of adding and removing HTML nodes
<input type="button" onclick="appendnode()" value="Add node">
<input type="button" onclick="removenode()" value="Delete node">
<div id="result"></div>
<script>
i=0
function appendnode() {
o=document.createElement("DIV");
o.innerHTML="test" i
document.getElementById('result').appendChild(o);
i
}
function removenode(){
var x = document.getElementById('result');
x.removeChild(x.lastChild) //Delete from the last node
}
</script>

<<:  Pitfalls based on MySQL default sorting rules

>>:  Example of how to set up a multi-column equal height layout with CSS

Recommend

Vue implements the method example of tab routing switching component

Preface This article introduces the use of vue-ro...

Two query methods when the MySQL query field type is json

The table structure is as follows: id varchar(32)...

HTML+CSS+JS sample code to imitate the brightness adjustment effect of win10

HTML+CSS+JS imitates win10 brightness adjustment ...

The difference between docker run and start

The difference between run and start in docker Do...

Six tips to increase web page loading speed

Secondly, the ranking of keywords is also related ...

What is the use of the enctype field when uploading files?

The enctype attribute of the FORM element specifie...

mysql5.5.28 installation tutorial is super detailed!

mysql5.5.28 installation tutorial for your refere...

Nginx one domain name to access multiple projects method example

Background Recently, I encountered such a problem...

How to import txt into mysql in Linux

Preface When I was writing a small project yester...

How to expand the disk size of a virtual machine

After Vmvare sets the disk size of the virtual ma...

Summary of the use of special operators in MySql

Preface There are 4 types of operators in MySQL, ...

Detailed explanation of how to gracefully delete a large table in MySQL

Preface To delete a table, the command that comes...

How to write the parent and child directories of HTML relative paths

How to indicate the parent directory ../ represent...

CSS and HTML and front-end technology layer diagram

The relationship between Javascript and DOM is ve...