Java Script
-
jQuery 버전 차이Java Script 2019. 9. 16. 09:33
jQuery 버전 차이 첫번째 CDN을 이용하는 방법 - https://code.jquery.com/jquery 에 접속해 원하는 버전을 클릭하여 연결하면 됩니다. 두번째 jQuery을 직접 다운로드해서 사용하는 방법 - http://jquery.com 에 접속해서 다운받아 연결하면 됩니다. P.S : 이때 .js와 min.js 두 가지가 있는데 전자는 사용자가 모든 소스를 볼 수있도록 풀버전 이라 생각하면 되고 후자는 불필요한 부분을 삭제하여 용량을 줄인것이라 생각하면 됩니다. 3.x.x 버전 - 가장 최신 버전, 아작스를 지원 2.x.x 버전 - IE 6~8 버전을 지원하지 않는다. - 1.x.x 버전 간소화 되어 용량이 작다. 1.x.x 버전 - 구형 브라우저에 가장 안정적인 버전이다. - 주로 공..
-
자바스크립트 Form 생성하여 Post 전송Java Script 2019. 8. 30. 14:19
/* * path : 전송 URL * params : 전송 데이터 {'q':'a','s':'b','c':'d'...}으로 묶어서 배열 입력 * method : 전송 방식(생략가능) */ function post_to_url(path, params, method) { method = method || "post"; // Set method to post by default, if not specified. // The rest of this code assumes you are not using a library. // It can be made less wordy if you use one. var form = document.createElement("form"); form.setAttribute("m..
-
JsonJava Script 2019. 5. 29. 10:10
var json = '{"result":true, "count":42}'; obj = JSON.parse(json); console.log(obj.count); // expected output: 42 console.log(obj.result); // expected output: trueconsole.log(JSON.stringify({ x: 5, y: 6 })); // expected output: "{"x":5,"y":6}" console.log(JSON.stringify([new Number(3), new String('false'), new Boolean(false)])); // expected output: "[3,"false",false]" console.log(..
-
-
음력달력 연습 3Java Script 2019. 2. 11. 17:26
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816..
-
음력달력 연습 2Java Script 2019. 2. 11. 17:24
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 Document //=========================================================================== // 윤년을 판단하는 함수 function isLeapYear(year) { return year % 400 == 0 || (year % 4 == 0 && y..
-
음력달력 연습 1Java Script 2019. 2. 11. 17:23
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 Document var year = moment().format("YYYY") * 1; var month = moment().format("MM") * 1; var date = moment().format("DD") * 1; document.writeln(moment().format("YYYY-MM-DD") + " "); document.writeln(getGanjiKor(year) + " "); document.writeln(g..
-
음력달력 jsJava Script 2019. 2. 11. 17:22
KimcLunar.js==========1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611..