Why is IE 10 Refusing to send POST data via jQuery $.ajax

后端 未结 8 2339
-上瘾入骨i
-上瘾入骨i 2020-12-05 05:00

Both in my development and production environment, IE 10 is refusing to send any POST data via a simple $.ajax call.

My script looks like this:

d = \         


        
8条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-05 06:02

    I have something similar (Problems with image upload from browsers to Amazon S3), and I have found that in my case the xhr object crashes when it is post-requesting http://some.server.com from https://my.local.server.com:123/foo. It crashes on xhr.open("POST", httpUrl, true) call.

    It probably is an IE10 bug (what a surprise ;) ), it is crashing both on Win7, and Win8.

提交回复
热议问题