일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 퀀트
- 반려견치매
- 머신러닝
- 유상증자
- Python
- 제다큐어
- 코로나19
- 주가분석
- 금리인상
- FOMC
- 넬로넴다즈
- 엘론 머스크
- 중국증시
- 아모레퍼시픽
- 국제유가
- prometheus
- 뉴지스탁
- 주식투자
- 기업분석
- 마법공식
- 뇌졸중
- 미국금리
- 테슬라
- 경제위기
- 스크리닝
- 중국경제
- WTI유
- DSP
- WTI
- 지엔티파마
- Today
- Total
목록Ajax (2)
Data Analysis for Investment & Control
Ajax 프로그래밍 하는데, "Ajax 가 정의되지 않았습니다"란 메시지에 '이거 따로 정의해줘야 하는 거야??' 라고 생각하고 있었는데, 검색 중에 prototype.js의 존재를 발견... 역시 무지하면 몸이 고생하는 군요. /* Prototype JavaScript framework, version 1.6.0.3 * (c) 2005-2008 Sam Stephenson * * Prototype is freely distributable under the terms of an MIT-style license. * For details, see the Prototype web site: http://www.prototypejs.org/ * *-----------------------------------..
A basic example var url = '/proxy?url=' + encodeURIComponent('http://www.google.com/search?q=Prototype'); // notice the use of a proxy to circumvent the Same Origin Policy. new Ajax.Request(url, { method: 'get', onSuccess: function(transport) { var notice = $('notice'); if (transport.responseText.match(/href="http:\/\/prototypejs.org/)) notice.update('Yeah! You are in the Top 10!').setStyle({ ba..