“jQuery Escape” Ответ

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

escaped by placing two backslashes '\\' in front of '# ~ [] = >'
ekkamrit

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

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

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

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

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