본문 바로가기 메뉴 바로가기

야쿠이야기

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

야쿠이야기

必死則生 必生則死

검색하기 폼
  • 분류 전체보기 (359)
    • 나의이야기 (8)
    • 나의아들 (5)
    • 웹개발 (275)
      • Php (90)
      • Linux (43)
      • Server (1)
      • Tools (18)
      • Jquery (10)
      • Javascript (61)
      • HTML&CSS (12)
      • Java (11)
      • DataBase (29)
    • 모바일 (9)
    • 요리 (6)
    • 여러가지 (40)
  • 방명록

웹개발/Javascript (61)
자바스크립트 잘하기

ContentsIntroductionBasic JavaScript: values, variables, and control flowFunctionsData structures: Objects and ArraysError HandlingFunctional ProgrammingSearchingObject-oriented ProgrammingModularityRegular ExpressionsWeb programming: A crash courseThe Document-Object ModelBrowser EventsHTTP requestsAppendicesMore (obscure) control structuresBinary HeapsAlphabetic index of terms Cover page

웹개발/Javascript 2014. 2. 26. 23:12
Prototypal Inheritance in JavaScript

출처 : http://javascript.crockford.com/prototypal.html Object.prototype.begetObject = function () { function F() {} F.prototype = this; return new F(); }; newObject = oldObject.begetObject(); if (typeof Object.create !== 'function') { Object.create = function (o) { function F() {} F.prototype = o; return new F(); }; } newObject = Object.create(oldObject);

웹개발/Javascript 2014. 2. 26. 23:11
Learning Advanced JavaScript

1) Our Goal 2) Defining Functions 3) Named Functions 4) Functions as Objects 5) Context 6) Instantiation 7) Flexible Arguments 8) Closures 9) Temporary Scope 10) Function Prototypes 11) Instance Type 12) Inheritance 13) Built-in Prototypes 14) Enforcing Function Context

웹개발/Javascript 2014. 2. 26. 23:07
자바스크립트 정규 표현식!

haracter(s) Pattern Ex. String Ex. (Pattern matches in red) Example Description & Jsfiddle Type Meta Characters ^ /^Cat/ Cat go fast string must start with Catjsfiddle anchor $ /slow$/ Dogs are slow string must end with slowjsfiddle anchor * /bo*/ boom and boat and bug matches when the precedingo occurs 0 or more timesjsfiddle quantifier + /bo+/ boom and boat and bug matches when the precedingo ..

웹개발/Javascript 2013. 12. 19. 17:21
javascript Cookie - 쿠키 객체

쿠키 메서드 // 쿠키 객체 var Cookies = { create: function(key, value, expires) { var date = new Date(); date.setTime(date.getTime() + (expires * 24 * 60 * 60 * 1000)); var expires = "; expires=" + date.toGMTString(); var path = "; path=/" var domain = "; domain=" + document.domain; document.cookie = key + "=" + value + expires + domain + path; }, read: function(key) { var keyString = key + "="; var cooki..

웹개발/Javascript 2013. 5. 29. 11:07
이전 1 2 3 4 5 6 7 ··· 13 다음
이전 다음
D-DAY
최근에 올라온 글
  • ES6 TODO 1
  • php7 클로져 사용하기
  • 베일리 어게인 영화 후기.
  • 알고리즘이 변화는 이유
최근에 달린 댓글
  • 감사합니다 설명을 명쾌하게 해주셨네요
  • 좋은 기사입니다. 여기에서 많은 유용한 것들을 찾을 수⋯
  • 그동안의 고되가 느껴지는 글이네요. 도움 감사합니다. ⋯
  • 정리를 너무 잘 해주셔서 이해가 많이 됐습니다. 태그⋯
Total
1,069,808
Today
2
Yesterday
7
링크
  • 네오미르
  • 아톰양
  • bloodguy
  • White Life Story :: White Life…
TAG
  • zen coding
  • events
  • SlideShow
  • 아이폰
  • selectbox
  • 코엑스
  • 사랑이
  • jquery Custom Event
  • jQuery
  • 아들
  • 할머니
  • 아이폰 발행
more
«   2023/03   »
일 월 화 수 목 금 토
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함
  • 2019/04 (2)
  • 2018/11 (1)
  • 2018/03 (1)
  • 2017/12 (1)
  • 2017/10 (2)

Blog is powered by Tistory / Designed by Tistory

티스토리툴바