ie에서 Jquery.ajax 사용시 유의 사항
다른 브라우져에서 제대로 동작하는에 IE에서만 안될 경우에 다양한 원인과 해결방법이 있다.
1. 크로스 도메인 오작동 이슈
: http://stackoverflow.com/questions/10232017/ie9-jquery-ajax-with-cors-returns-access-is-denied
2. 케쉬 이슈
: http://www.itworld.com/development/303295/ajax-requests-not-executing-or-updating-internet-explorer-solution
3. console.log 이슈
: http://stackoverflow.com/questions/12592209/jquery-ajax-not-working-in-ie9
=_=; 본인은 console.log 때문에.. 없으면 없다고 에러라도 났으면 ㅠㅠ
1. 크로스 도메인 오작동 이슈
: http://stackoverflow.com/questions/10232017/ie9-jquery-ajax-with-cors-returns-access-is-denied
2. 케쉬 이슈
: http://www.itworld.com/development/303295/ajax-requests-not-executing-or-updating-internet-explorer-solution
3. console.log 이슈
: http://stackoverflow.com/questions/12592209/jquery-ajax-not-working-in-ie9
if(!window.console || !window.console.log) {
window.console = {log : function(){}};
}
window.console = {log : function(){}};
}
=_=; 본인은 console.log 때문에.. 없으면 없다고 에러라도 났으면 ㅠㅠ
댓글
댓글 쓰기