The problem is the cache of IE. If we use "Get" method to get data from backend, and the parameters are the same, IE won't really get the data. In contrast, FF does not have this problem. The solution is to set cache to false.
$.ajaxSetup({cache: false});
$.get("xxx.jsp",{A=a,B=b},function(){
});
Or, add a parameter with date.
$.get("xxx.jsp",{timestamp:new Date().getTime()},function(){
});