목록분류 전체보기 (208)
웹표준,웹접근성(html, html5, css, css3, javascript, jQuery, jQueryMobile, snecha, senchaTouch, php, mobileWebApp)
ECMAScriptECMA가 표준화한 JavaScript의 표준안으로 ECMAScript5에서는 몇가지 메서드들이 추가 되었다. 1. 생성자함수의 메서드 메서드 설명 Array.isArray() 배열인지 아닌지 불린값으로 확인 typeof 키워드를 사용해서 Array 객체의 자료형을 확인하면 문자열'object' 가 나온다. 이때문에 constructor() 메서드를 활용해 자료형 비교를 응용해야 하는데 ECMAScript5를 사용할수 있는 환경이라면 손쉽게 확인해 볼 수 있다. ex) Array.isArray() // 변수 array1 의 배열선언var array1 = [1,2,4];// 변수 array2의 함수 선언var array2 = function(){}// 변수 array1의 자료형이 배열인지..
이벤트명 : 한국전력공사 - 티스토리블로그작업일 : 2014.06.18url : http://blog.kepco.co.kr/
Math 객체수학과 관련된 속성과 메서드를 갖는객체로 기본내장 객체중 유일하게 생성자 함수를 사용하지 않는다. 1. Math 객체의 속성 속성 값 E 2.718281828459045 LN2 0.6931471805599453 LN10 2.302585092994046 LOG2E 1.4426950408889633 LOG10E 0.4342944819032518 PI 3.141592653589793 SQRT1_2 0.7071067811865476 SQRT2 1.4142135623730951 Math 객체는 생성자 함수가 아니므로 아래와 같이 사용한다.console.log(Math.E);console.log(Math.LN2);console.log(Math.LN10);console.log(Math.LOG2E);con..
Date 객체날짜와 시간을 표시한다. Date 객체의 생성방법var date = new Date();console.log(date);Date()객체에 아무런 매개변수도 입력하지 않으면 현재시간을 가져온다. 예) 문자열을 사용한 Date() 생성var date01 = new Date('July 7');console.log(date01); var date02 = new Date('July 7, 2014');console.log(date02); var date03 = new Date('July 7, 2014 11:05:23');console.log(date03); var date04 = new Date('2014, 7, 11');console.log(date04); var date05 = new Date('2..
Array 객체요소 제거Array 객체 메서드에는 특정 요소를 제거하는 메서드가 따로 없다.splice() 메서드를 사용하여 제거해야하며 프로토타입에 remove()를 추가해서 배열 요소를 제거할수 있다. Array.prototype.remove = function(index){ this.splice(index,1);} Array 객체 요소제거의 잘못된 예)// Array 생성자 함수 프로토타입에 remove() 메서드 추가 Array.prototype.remove = function(index){ this.splice(index,1);}// 숫자 4가지의 값을 가진 배열 num 선언var num= [80, 90, 200, 300];// num 배열의 갯수만큼 반복for(var i=0; i < num.l..
이벤트명 : 산업안전보건공단 - 베스트 안전습관작업일 : 2014.05.18url : http://www.kosha-event.com/bestSafety/gallery.html
이벤트명 : 우리동네 고용복지 센터 찾기 - 고용노동부작업일 : 2014.07.01url : http://www.workplus-event.com/
이벤트명 : 선거관리위원회 이미지다운이벤트 웹작업일 : 2014.05.18url : http://nec1963-event.com/http://nec1963-event.com/profile/ 이벤트명 : 선거관리위원회 이미지다운이벤트 모바일작업일 : 2014.05.18url : http://nec1963-event.com/profile/index_m.html
이벤트명 : 선거관리위원회 퀴즈 이벤트2 웹작업일 : 2014.05.18url : http://nec1963-event.com/quiz1/ 이벤트명 : 선거관리위원회 퀴즈 이벤트2 모바일작업일 : 2014.05.18url : http://nec1963-event.com/quiz1/index_mobile.html