“função de escape html javascript” Respostas de código

JavaScript Escape HTML

function escapeHtml(str) {
    return str.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&#039;");
}
Grepper

função de escape html javascript

function escapeHTML(text) {  
    var replacements= {"<": "&lt;", ">": "&gt;","&": "&amp;", """: "&quot;"};                      
    return text.replace(/[<>&"]/g, function(character) {  
        return replacements[character];  
    }); 
}
Creepy Gábor

Respostas semelhantes a “função de escape html javascript”

Perguntas semelhantes a “função de escape html javascript”

Mais respostas relacionadas para “função de escape html javascript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código