“jQuery Escape html String” Ответ

jQuery Escape html String

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

jQuery Escape html String

//escaping HTML with jquery
var dangerousHTML = "<script>alert('Badabing Baby!');</script>";
$("#myElementID").text(dangerousHTML); //.text() function will escape and display text


//Alternatively, here is plain Javascript escape function
function escapeHtml(str) {
    return str.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """).replace(/'/g, "'");
}
Grepper

Ответы похожие на “jQuery Escape html String”

Вопросы похожие на “jQuery Escape html String”

Больше похожих ответов на “jQuery Escape html String” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования