Show Me The CodeHTMLElement.prototype.appendHTML = function(html) { let divTemp = document.createElement("div"); let nodes = null; let fragment = document.createDocumentFragment(); divTemp.innerHTML = html; nodes = divTemp.childNodes; nodes.forEach(item => { fragment.appendChild(item.cloneNode(true)); }) // Insert to the end append this.appendChild(fragment); // Insert prepend at the front // this.insertBefore(fragment, this.firstChild); nodes = null; fragment = null; }; Test the effecthtml <style> .child { height: 50px; width: 50px; background: #66CCFF; margin-bottom: 1em; } </style> <div id="app"> <div class="child"> <div class="child"> </div> js let app = document.getElementById('app'); let child = `<div class="child">down</div>`; app.appendHTML(child); Effect PSIn addition, if you want to insert above, just change this.appendChild(fragment); in the code to this.insertBefore(fragment, this.firstChild); Another approachvar div2 = document.querySelector("#div2"); div2.insertAdjacentHTML("beforebegin","<p>hello world</p>");//Add an element before the calling elementdiv2.insertAdjacentHTML("afterbegin","<p>hello world</p>");//Add a child element inside the calling element and replace the first child elementdiv2.insertAdjacentHTML("beforeend","<p>hello world</p>");//Add a child element after the calling element and replace the last child elementdiv2.insertAdjacentHTML("afterend","<p>hello world</p>");//Add an element after the calling element The effect of browser rendering: This method is the earliest method of IE, so the compatibility is particularly good The above is the details of JS implementing jQuery's append function. For more information about JS implementing jQuery append, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to set up the terminal to run applications after Ubuntu starts
>>: How InnoDB cleverly implements transaction isolation levels
I have introduced it to you before: docker (deplo...
Preface When we were writing the web page style a...
Table of contents 1. Introduction to label statem...
1. Color matching problem <br />A web page s...
1. Download Download address: https://dev.mysql.c...
Table of contents Preface Basic Introduction Code...
Table of contents The effect of mixed inheritance...
Why do I want to organize the content in this area...
Preface This is an investigation caused by the ex...
Docker is really cool, especially because it'...
Standardized design solutions - markup languages ...
I encountered a problem today. When entering the ...
When an employer asks you whether an index will b...
I'll record my first attempt at vue3.0. When ...
version: centos==7.2 jdk==1.8 confluence==6.15.4 ...