일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- error
- java
- PHP
- 리눅스
- windows
- 우분투
- Eclipse
- nodejs
- Mac
- socket.io
- Android
- node
- ASP
- mysql
- 기본문법
- ubuntu
- CSS
- network
- JS
- 안드로이드
- Linux
- install
- HTML
- 구글
- vim
- javascript
- SVN
- HaProxy
- Gmail
- Today
- 391
- Total
- 1,089,214
목록JS (17)
Blue Breeze
파일 작업 지원 FF >= 3.6 Safari >= 6.0 Chrome >= 7.0 IE : 지원안함 Opera >= 11.1 if( window.File && window.FileReader && window.FileList ){ // API 지원 /* ... */ } 파일 정보 얻기 파일시스템을 자바스크립트로 노훌하는 기능 파일 입력 <input type="file" mul..
참고JavaScript 표준을 위한 움직임: CommonJS와 AMDcommonJS브라우저용curl.js(http://github.com/unscriptable/curl)SproutCore(http://sproutcore.com)PINF(http://github.com/pinf/loader-js)기타 등등서버사이드용Node.js(http://nodejs.org)Narwhal(https://github.com/tlrobinson/narwhal)Pers..
참고 maccman MVC와 명칭공간 var User = { records: [], fetchRemote: function(){ /* ... */ } }; var user = new User; /////////////////////////////////// var User = function( atts ){ this.attributes = atts || {}; }; User.prototype.destory = function(){ ..
JavaScript Web Application - Chapter2 이벤트와 이벤트 관찰에서이벤트는 자바스크립트 응용프로그램의 핵심이다. 이벤트는 애플리케이션을 동작시키는 원천이며 사용자가 애플리케이션과 의사 소통할 때 필요한 기능을 제공한다. 그러나 동시에 자바스크립느의 비 표준 문제를 일으키는 장본인이기도 하다.브라우저 전쟁이 한창일 때 넷스케이프와 아이크로소프트는 서로 호환하지 않은 이벤트 모델이라는 것을 알면서도 각자 자신의 이벤트 모델을 선..
http://maccman.github.com/hollaHJS - JQUERY OBJECT ORIENTED CLASSSpinehttp://hanb.co.kr/example/1925 klass.js var Person = new Class;var Person.prototype.init = function(){ // Person을 인스턴스화할 때 호출된다. }; // 사용 var person = new Person; //////////..
참고A better timer for JavaScript window.performance = window.performance || {}; performance.now = (function() { return performance.now || performance.mozNow || performance.msNow || performance.oNow || ..