반응형 javascript unescape html 처리1 javascript - html escape / unescape 처리 구현 html 태그를 escape 처리를 합니다. 사용 예) function escapeHtml( text ) { var map = { '&': '&', '': '>', '"': '"', "'": ''' }; return text.replace(/[&"']/g, function(m) { return map[m]; }); } escape 처리된 html 태그를 unescape 처리를 합니다. 사용 예) function unescapeHtml( text ) { var doc = new DOMParser().parseFromString(text, "text/html"); return doc.documentElement.textContent; } 2022. 8. 20. 이전 1 다음 반응형