Wyciągnij tylko tekst z elementu JavaScript
function extractContent(html) {
return (new DOMParser).parseFromString(html, "text/html") .
documentElement . textContent;
}
Fantastic Flamingo