“texto js para html” Respostas de código

JS converte html em texto

// To remove all HTML tags use the ".replace(/<[^>]+>/g, '')" method.
let myHTML= "<div><h1>Jimbo.</h1>\n<p>That's what she said</p></div>";
let strippedHtml = myHTML.replace(/<[^>]+>/g, '');
console.log(stripedHtml); // Jimbo. That's what she said
Undefined

texto js para html

var textToHTML= function (str) {

	var dom = document.createElement('div');
	dom.innerHTML = str;
	return dom;

};
Fine Fish

Respostas semelhantes a “texto js para html”

Perguntas semelhantes a “texto js para html”

Mais respostas relacionadas para “texto js para html” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código