escape_html
last update:
2016/12/12
function escapeHTML(str) { if(!str){return '';} return str.replace(/["'`<>&]/g, function(m) { return { '"': '"', "'": ''', '`': '`', '<': '<', '>': '>', '&': '&', }[m] }); } code_popup