일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 넬로넴다즈
- 중국경제
- 지엔티파마
- WTI
- 유상증자
- DSP
- 코로나19
- Python
- 스크리닝
- 뇌졸중
- 주식투자
- 엘론 머스크
- 머신러닝
- 테슬라
- 미국금리
- 주가분석
- 퀀트
- 경제위기
- prometheus
- 마법공식
- 제다큐어
- 뉴지스탁
- 아모레퍼시픽
- 중국증시
- 반려견치매
- FOMC
- 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..