본문 바로가기

js

날짜 구하는 js /*1번째 인자 : yyyy, m, d (더하는 기준)2번째 인자 : 더하는 날짜3번재 인자 : 기준 날짜4번째 인자 : 날짜 구분값*/function addDate(pInterval, pAddVal, pYyyymmdd, pDelimiter){ var yyyy; var mm; var dd; var cDate; var oDate; var cYear, cMonth, cDay; if( pDelimiter != "" ){ pYyyymmdd = pYyyymmdd.replace(eval("/\\" + pDelimiter + "/g"), ""); }//end if yyyy = pYyyymmdd.substr(0, 4); mm = pYyyymmdd.substr(4, 2); dd = pYyyymmdd.substr(6, 2.. 더보기
Javascript의 prototype 제대로 이해하기 출처:http://blog.naver.com/jjoommnn/130125787219 Javascript의 prototype 제대로 이해하기 Javascript 2011/12/07 10:55http://blog.naver.com/jjoommnn/130125787219전용뷰어 보기Ajax가 대중화 된 이후부터 javascript를 프로그래밍 언어로서 제대로 배우려는 노력들이 많아진것 같다.그렇게 javascrpt를 공부하다가 보면 객체지향적으로 javascript를 사용하는 방법과 관련하여 prototype을 배우게 된다. 그럼 지금 알고 있는 javascript의 prototype에 관련된 지식으로 다음 코드를 보자.var obj = {};obj.prototype.foo = function() { aler.. 더보기
Radio disabled Property Radio disabled Property Radio ObjectExamplesExample 1Disable a radio button:The result will be: Try it yourself » Definition and UsageThe disabled property sets or returns whether a radio button is disabled, or not.A disabled element is unusable and un-clickable. Disabled elements are usually rendered in gray by default in browsers.SyntaxSet the disabled property:element.disabled=true|falseRetur.. 더보기
JavaScript RegExp [^0-9] Expression 특수 문자도 \ 태그를 붙여서 사용할 수 있는듯.. \. 으로 쓰면 . 도 인식할 수 있음. JavaScript RegExp [^0-9] Expression JavaScript RegExp ObjectExampleDo a global search for the numbers that are NOT 1 to 4 in a string:var str = "123456789"; var patt1 = /[^1-4]/g;The marked text below shows where the expression gets a match:123456789 Try it yourself »Definition and UsageThe [^0-9] expression is used to find any digit NOT betwee.. 더보기