JS 정규식으로 원하는 태그 제거하기 ( 테이블표 엑셀출력 과정 JS EXCEL DOWN )
function tableToExcel(id, title) { var data_type = 'data:application/vnd.ms-excel;charset=utf-8'; var table_html = encodeURIComponent(document.getElementById(id).outerHTML.replace(/]*)>/gi, "")); var a = document.createElement('a'); a.href = data_type + ',%EF%BB%BF' + table_html; a.download = title + '.xls'; a.click(); } 위와 같은 함수를 사용해서 html의 table코드 그대로 엑셀로 다운받게 하는 과정에서 table코드 안에 있는 a태그로 감싸진 내용..
2022.05.20