使用easyXDM从其他域加载html

时间:2012-11-26 17:13:50

标签: javascript jquery easyxdm

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

感谢。

0 个答案:

没有答案