사용자 도구

사이트 도구


javascript:commonfunctions

문서의 이전 판입니다!


Javascript Common Functions

Escape HTML

function escapeHtml(str) {
  return str
    .replace(/&/g, '&')
    .replace(/>/g, '>')
    .replace(/</g, '&lt;')
    .replace(/"/g, '&quot;')
    .replace(/'/g, '&#39;'); // Do not use "&apos;", IE does not support.
}
javascript/commonfunctions.1340783834.txt.gz · 마지막으로 수정됨: 2012/06/27 16:57 저자 kwon37xi