Simple example of adding and removing HTML nodes

Simple example of adding and removing HTML nodes
<br />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>

<<:  Share CSS writing standards and order [recommended for everyone to use]

>>:  Example of how to configure nginx to implement SSL

Recommend

CSS3 new layout: flex detailed explanation

Flex Basic Concepts Flex layout (flex is the abbr...

How to install and use Server-U 14 version

Introducing Server-U software Server-U is a very ...

Basic usage of JS date control My97DatePicker

My97DatePicker is a very flexible and easy-to-use...

What to do if you forget your mysql password

Solution to forgetting MySQL password: [root@loca...

Example of how to implement value transfer between WeChat mini program pages

Passing values ​​between mini program pages Good ...

MySQL database master-slave replication and read-write separation

Table of contents 1. Master-slave replication Mas...

How to implement page screenshot function in JS

"Page screenshot" is a requirement ofte...

Example steps for using AntV X6 with Vue.js

Table of contents 0x0 Introduction 0x1 Installati...

HTML optimization speeds up web pages

Obvious HTML, hidden "public script" Th...

Summary of new usage examples of computed in Vue3

The use of computed in vue3. Since vue3 is compat...

Detailed explanation of how to use $props, $attrs and $listeners in Vue

Table of contents background 1. Document Descript...

jQuery to achieve the barrage effect case

This article shares the specific code of jQuery t...

CSS scroll-snap scroll event stop and element position detection implementation

1. Scroll Snap is a must-have skill for front-end...