我正在尝试使用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>
感谢。