//채팅 기록을 로컬에 저장
기능 save_record()
{
//현재 날짜를 파일 이름으로 가져오기
var time=new Date()
var filename=time.toLocaleDateString()
//부분 가져오기 현재 페이지 콘텐츠
var Record=$("#contentList").html();
//새 창을 열어 저장
var winRecord=window.open('about:blank', '_blank','top=500') ;
winRecord.document.open("text/html","utf-8")
winRecord.document.write("" 레코드 " ");
winRecord.document.execCommand("SaveAs", true, 파일 이름 ".html");
winRecord.close();
}