“Usuń wszystkie znaczniki HTML z String JavaScript” Kod odpowiedzi

Usuń wszystkie znaczniki HTML z String JavaScript

myString.replace(/<[^>]*>?/gm, '');
Difficult Donkey

JavaScript Usuń HTML z tekstu

//remove html tags from a string, leaving only the inner text
function removeHTML(str){ 
    var tmp = document.createElement("DIV");
    tmp.innerHTML = str;
    return tmp.textContent || tmp.innerText || "";
}
var html = "<div>Yo Yo Ma!</div>";
var onlyText = removeHTML(html); "Yo Yo Ma!"
Grepper

Usuń HTML między 2 tagami Javas

var myString = "<table><tr><td>Some text ...<a href='#'>label...</a></td></tr></table";
myString += "<table><tr><td>Some text ...<a href='#'>label...</a></td></tr></table";
myString += "<table><tr><td>Some text ...<a href='#'>label...</a></td></tr></table";

console.log(myString);

var anchorTagsRemoved = myString.replace(/<a.*>.*?<\/a>/ig,'');
console.log(anchorTagsRemoved);
Disgusted Dragonfly

Odpowiedzi podobne do “Usuń wszystkie znaczniki HTML z String JavaScript”

Pytania podobne do “Usuń wszystkie znaczniki HTML z String JavaScript”

Więcej pokrewnych odpowiedzi na “Usuń wszystkie znaczniki HTML z String JavaScript” w JavaScript

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

Przeglądaj inne języki kodu