Most probably, it refers to the technique some people use to insert HTML at the end:
element.innerHTML += "inserted HTML";
This will get the current HTML, concatenate it with the inserted one, and parse it all.
As a side effect, all the internal state of the existing elements (like event listeners, checkedness, ...) will be lost.
var btn = document.querySelector("button");
btn.addEventListener("click", function() {
btn.textContent = "I won't work anymore";
document.body.innerHTML += "<p>Inserted text</p>";
});
<button>Click me to insert HTML</button>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…