質問編集履歴
4
直し
test
CHANGED
File without changes
|
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
xhr = new ActiveXObject("Microsoft.XMLHTTP");
|
24
24
|
|
25
|
-
xhr.open('GET',
|
25
|
+
xhr.open('GET', 'http://jfeiw.cgi', true);
|
26
26
|
|
27
27
|
|
28
28
|
|
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
xhr = new XDomainRequest();
|
42
42
|
|
43
|
-
xhr.open('GET',
|
43
|
+
xhr.open('GET', 'http://jfeiw.cgi', true);
|
44
44
|
|
45
45
|
|
46
46
|
|
@@ -60,7 +60,7 @@
|
|
60
60
|
|
61
61
|
$.ajax({
|
62
62
|
|
63
|
-
url:
|
63
|
+
url: 'http://jfeiw.cgi' + '&format=jsonp&callback=?',
|
64
64
|
|
65
65
|
crossDomain: true,
|
66
66
|
|
@@ -94,7 +94,7 @@
|
|
94
94
|
|
95
95
|
xhr = new XMLHttpRequest();
|
96
96
|
|
97
|
-
xhr.open('GET',
|
97
|
+
xhr.open('GET', 'http://jfeiw.cgi', true);
|
98
98
|
|
99
99
|
|
100
100
|
|
3
やったことを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -52,6 +52,46 @@
|
|
52
52
|
|
53
53
|
```javascript
|
54
54
|
|
55
|
+
xdr.js読み込み
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
$.support.cors = true;
|
60
|
+
|
61
|
+
$.ajax({
|
62
|
+
|
63
|
+
url: API.contentCgi + '&format=jsonp&callback=?',
|
64
|
+
|
65
|
+
crossDomain: true,
|
66
|
+
|
67
|
+
cache: false
|
68
|
+
|
69
|
+
}).then(
|
70
|
+
|
71
|
+
function(data) {
|
72
|
+
|
73
|
+
console.log(data);
|
74
|
+
|
75
|
+
},
|
76
|
+
|
77
|
+
function() {
|
78
|
+
|
79
|
+
console.log('error');
|
80
|
+
|
81
|
+
}
|
82
|
+
|
83
|
+
);
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
-> error
|
88
|
+
|
89
|
+
```
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
```javascript
|
94
|
+
|
55
95
|
xhr = new XMLHttpRequest();
|
56
96
|
|
57
97
|
xhr.open('GET', API.contentCgi, true);
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,6 +11,10 @@
|
|
11
11
|
|
12
12
|
|
13
13
|
以下のようになり出来ません。
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
jquery-2.1.4.jsを使用しています。
|
14
18
|
|
15
19
|
|
16
20
|
|
@@ -29,6 +33,10 @@
|
|
29
33
|
|
30
34
|
|
31
35
|
```javascript
|
36
|
+
|
37
|
+
xdr.js読み込み
|
38
|
+
|
39
|
+
|
32
40
|
|
33
41
|
xhr = new XDomainRequest();
|
34
42
|
|
1
追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
###前提・実現したいこと
|
2
2
|
|
3
3
|
IE9 でクロスドメインのajax通信をしたいのですがエラーになります。
|
4
|
+
|
5
|
+
どうすれば良いでしょうか。
|
4
6
|
|
5
7
|
|
6
8
|
|