IE11 Windows ajax calls not working
i am using windows 7 , IE 11 , with a web server dispatcher. Some of my ajax calls not even going to the back end a I do not see the xhr request in browser's network tab. Any help.
$.ajax({ cache : false, url: serverUrl, dataType: 'json', type: 'POST', contentType : 'application/json', data : JSON.stringify(requestData), success: function( data){ //do something }, error: function( errorThrown ){ console.log( errorThrown ); } });
链接地址: http://www.djcxy.com/p/96486.html上一篇: 是否使用'var'声明变量是可选的?