1

ajax / javascriptを使用して、別のドメインから自分のドメインへのページを呼び出して表示したいと思います。ページの元のURLを非表示にします。(surveymonekyの場合の例では、surverymonkyesのURLを表示せずに、自分のWebサイトに調査ページをロードできます。)

どうすればいいですか?

前もって感謝します..

よろしく、

スニル

4

1 に答える 1

1

Due to the SOP (same origin policy) implemented in browsers, you can only retrieve information from another domain using Ajax if the other domain allows that by setting the Access-Control-Allow-Origin response header to the domain where the request originated.

于 2012-09-04T10:04:11.240 に答える