기타56 Form to JSON FORM을 받아서 JSON형식으로 만들기var test = $(form).serializeArray();JSON.stringify(objectifyForm(test)) function objectifyForm(formArray) {//serialize data functionvar returnArray = {};for (var i = 0; i < formArray.length; i++){returnArray[formArray[i]['name']] = formArray[i]['value'];}return returnArray;} 2018. 11. 9. ASP URLDecode FUNCTION URLDecode(str)'// This function:'// - decodes any utf-8 encoded characters into unicode characters eg. (%C3%A5 = å)'// - replaces any plus sign separators with a space character'//'// IMPORTANT:'// Your webpage must use the UTF-8 character set. Easiest method is to use this META tag:'// '// Dim objScript Set objScript = Server.CreateObject("ScriptControl") objScript.Language = "JavaScri.. 2018. 11. 8. Access-Control-Allow-Origin Access-Control-Allow-OriginASP에서 SSL설치후 Access-Control-Allow-Origin 발생 2018. 11. 2. HTML CSS PRINT영역 여러가지 테스트해봤는데해당 경우가 제일 잘작동 하였다.http://jsfiddle.net/destan/e9gjwodL/ --HTML Page 1/2 Page 2/2 CSS body { width: 100%; height: 100%; margin: 0; padding: 0; background-color: #FAFAFA; font: 12pt "Tahoma"; } * { box-sizing: border-box; -moz-box-sizing: border-box; } .page { width: 210mm; min-height: 297mm; padding: 20mm; margin: 10mm auto; border: 1px #D3D3D3 solid; border-radius: 5px; background: wh.. 2018. 11. 1. CANVAS를 이용한 모바일에서 사인처리 CANVAS를 이용한 모바일에서 사인처리1. 참고가 되었던 유튜브https://www.youtube.com/watch?v=P6SLf6jmXS02. 캔버스에 관한 튜토리얼정보https://www.html5canvastutorials.com/3. 파일전송을위한 Blobhttps://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toBlobhttps://stackoverflow.com/questions/18253378/javascript-blob-upload-with-formdata --------------터치이벤트 다른걸로 처리가능한데 framework7에 있는 돔조작부분을 활용했다. ---- ---이것저것 짬뽕해서 기능구현쪽으로만 적용해놨는데실제.. 2018. 10. 24. Chr(30)의 사용 아스키 코드표에서 30의 경우 record separator로 사용된다.쉽게 생각하면 눈에 보이지 않는 문자라고 보면되겠다.Chr(30)http://www.asciitable.com/ 엑셀 출력을 작성할때00123123 의형태로 출력된다면00의 값이 사라지게된다. 그때 앞쪽에 레코드 세퍼레이터를 넣어서 사라지는걸 방지한다. 2018. 10. 10. OBJECT RUNAT=server http://www.webmadang.net/develop/develop.do?action=read&boardid=1001&page=2&seq=69 2018. 9. 6. ADODB Type Library http://taeyo.net/Columns/View.aspx?SEQ=238&PSEQ=16&IDX=7 https://msdn.microsoft.com/en-us/library/ms525469(v=vs.90).aspx http://dooji.tistory.com/56 음 신입 설명용 2018. 9. 6. WindowTimers https://developer.mozilla.org/ko/docs/Web/API/WindowTimers WindowTimers.clearInterval()WindowTimers.setInterval()를 사용하여 반복되는 실행 세트를 취소합니다.WindowTimers.clearTimeout() WindowTimers.setTimeout()를 사용하여 지연된 실행 세트를 취소합니다.WindowTimers.setInterval()주어진 1000분의1초 단위의 시간이 경과할 때마다 실행할 함수를 예약합니다.WindowTimers.setTimeout()지정된 시간 내에 실행할 함수를 예약합니다.-> 타이머가 만료된후 실행된다. 2018. 7. 27. 이전 1 2 3 4 5 6 7 다음