В следующем примере HTMLCollection создается из строки, содержащей HTML.
Можно ли в конечном итоге добавить коллекцию HTML в другой элемент, не добавляя дополнительный окружающий элемент div или template?
const stringHTML = `
<div>
<h1>This is a div</h1>
<div>
<p>inner div</p>
</div>
</div>
<div>
<h2>Another div</h2>
</div>
`;
/**
* @param html {String} Representing a single HTML element
* @return {HTMLCollection} The newly created element
*/
const stringToHTMLCollection = function(html) {
/** @type {HTMLElement} */
const template = document.createElement('template');
html = html.trim(); // Never return a text node of whitespace as the result
template.innerHTML = html;
return template.content.children;
}
console.log(stringToHTMLCollection(stringHTML));
// This works.
Object.entries(stringToHTMLCollection(stringHTML)).forEach(([key, element]) => {
result.insertAdjacentElement('beforeend', element);
});
// However isn't there a more elegant way using something similar to insertAdjecentHTML?
<div id="result"></div>