$.getJSON 이 IE 에서 효력 을 잃 은 원인 분석 및 해결 방법

409 단어 getJSONIE
 
$.ajaxSetup({ cache: false });
$.getJSON("/MyQueryUrl",function(data,item) {
// do stuff with callback data
$.ajaxSetup({ cache: true });
});
이유:getJSon 은 IE 에서 기본적으로 브 라 우 저 캐 시 를 사용 하기 때문에 데이터 가 해결 되 지 않 습 니 다.캐 시 를 사용 하지 않도록 하 는 데 더 많은 해결 방법 이 있 습 니 다.http://stackoverflow.com/questions/264216/getjson-returning-cached-data-in-ie8

좋은 웹페이지 즐겨찾기