<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
Flex Basic Concepts Flex layout (flex is the abbr...
Introducing Server-U software Server-U is a very ...
Just 15 lines of CSS to crash your iPhone Securit...
My97DatePicker is a very flexible and easy-to-use...
Solution to forgetting MySQL password: [root@loca...
Passing values between mini program pages Good ...
Table of contents 1. Master-slave replication Mas...
"Page screenshot" is a requirement ofte...
Table of contents 0x0 Introduction 0x1 Installati...
Install crontab yum install crontabs CentOS 7 com...
Obvious HTML, hidden "public script" Th...
The use of computed in vue3. Since vue3 is compat...
Table of contents background 1. Document Descript...
This article shares the specific code of jQuery t...
1. Scroll Snap is a must-have skill for front-end...