Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 러닝스칼라
- hackerschool
- 러닝 스칼라
- 백엔드
- Web
- Javascript
- backend
- mysql
- 경제
- 리눅스
- 인공지능
- 딥러닝
- ChatGPT
- 파이썬
- 챗GPT
- webhacking
- flask
- hackthissite
- Shellcode
- Python
- Linux
- c++
- Scala
- deep learning
- c
- BOF
- php
- hacking
- BOF 원정대
- 웹해킹
Archives
- Today
- Total
jam 블로그
[javascript] jQuery 1.5 이상에서 ajaxfileupload.js 사용시 오류 수정방법. 본문
개발 및 관련 자료/HTML&CSS&Javascript
[javascript] jQuery 1.5 이상에서 ajaxfileupload.js 사용시 오류 수정방법.
kid1412 2013. 4. 11. 09:26728x90
jQuery 1.5 이상에서 ajaxfileupload.js 사용 시에 다음과 같은 에러 메세지가 나오면서 작동하지 않습니다.
chrome : "Uncaught TypeError: Object function (a,b){return new e.fn.init(a,b,h)} has no method 'handleError'"
filefox : "jQuery.handleError is not a function"
다음처럼 해결하시면 됩니다.
ajaxfileupload.js 파일을 여신 다음에
jQuery.extend 함수 안에
handleError:function( s, xhr, status, e ){// If a local callback was specified, fire it
if( s.error ){ s.error.call( s.context || window, xhr, status, e );}// Fire the global callbackif( s.global){(s.context ? jQuery(s.context): jQuery.event).trigger("ajaxError",[xhr, s, e]);}},
다음의 소스를 붙어 넣으시면 됩니다.
출처 : http://stackoverflow.com/questions/8627201/ajax-upload-plugin-throwing-jquery-handleerror-not-found
'개발 및 관련 자료 > HTML&CSS&Javascript' 카테고리의 다른 글
[html] 한글 줄바꿈 방법 (0) | 2013.11.06 |
---|---|
[jquery] iframe 페이지 reload 하기. (0) | 2013.07.11 |
[javascript] javascript 현재시간 unix 시간 만들기 (0) | 2013.04.10 |
[web] ie8 마우스 위치 찾기 (0) | 2013.04.04 |
[html5]html5에서 css나 javascript include 시키기 (0) | 2012.08.18 |
Comments