easyXDM を使用して別のサイトから html を読み込もうとしていますが、HTTP GET を介して読み込もうとするとうまくいきません。
問題の原因を知っている人はいますか?
<script type="text/javascript">
jQuery.support.cors = true;
var rpc = new easyXDM.Rpc({
remote: "http://anything.com"
},
{
remote: {
request: {}
}
});
rpc.request({
url: "/default.aspx",
method: "GET"
}, function (response) {
alert(response);
});
</script>
</p>
ありがとう。