“Konwertuj ciąg na element HTML w JS” Kod odpowiedzi

Konwertuj ciąg na element HTML w JS

/**
 * Convert a template string into HTML DOM nodes
 * @param  {String} str The template string
 * @return {Node}       The template HTML
 */
var stringToHTML = function (str) {
	var parser = new DOMParser();
	var doc = parser.parseFromString(str, 'text/html');
	return doc.body;
};
Wandering Wolf

Konwertuj ciąg na element HTML w JS

   <div style="border:1px solid black; margin-top:20px; height:500px; overflow:scroll;" id="messageBox" >
                        <div class="row " style="border: 1px solid black; margin:10px; ">
                            <p style="float: left;">User Name : </p> <p style="margin-left:2px; float: left;"> Message content</p>
                        </div>
                    </div>
Dizzy Deer

Odpowiedzi podobne do “Konwertuj ciąg na element HTML w JS”

Pytania podobne do “Konwertuj ciąg na element HTML w JS”

Więcej pokrewnych odpowiedzi na “Konwertuj ciąg na element HTML w JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu