jQuery 에서 serialize 할 때 한글 깨짐 현상 고치기. ajax 로 폼 안의 컨트롤의 내용을 보내고자 할 때 굉장히 유용한 jQuery의 serialize() 함수에 커다란 결점이 하나 있는데... http://api.jquery.com/ 자바스크립트에서 우선 1. problem = escape(encodeURIComponent(problem)); 코드로 변경해주고 2. $.ajax({type: "POST", async: false, data: "", contentType:"application/x-www-form-urlencoded; charset=UTF-8", ... ... str = escape(encodeURIComponent(document.searchForm.person.value..