0

我需要返回此页面的内容http://service.semanticproxy.com/processurl/ftfu27m3k66dvc3r43bzfneh/html/http://www.smallbiztechnology.com/archive/2013/12/why-creating-a-digital-storefront -is-crucial-for-your-small-business.html但是当我调用这个函数时

function getResult() {
            var url="http://service.semanticproxy.com/processurl/ftfu27m3k66dvc3r43bzfneh/html/http://www.smallbiztechnology.com/archive/2013/12/why-creating-a-digital-storefront-is-crucial-for-your-small-business.html";
            $.ajax({
                cache: true,
                url: url,
                success: function (result) {
                    alert(result);
                }
            });
        }

我在萤火虫中得到了这个:

segment.min.js (ligne 1) GET http://service.semanticproxy.com/processurl/ftfu...orefront-is-crucial-for-your-small-business.html 200 OK 379msA。

知道如何获取该页面的内容吗?

4

1 回答 1

0

此代码对您不起作用。原因是您尝试检索的 html 页面不是有效的 JAVASCRIPT 文件(而且您也不能使用 jsonp,因为它没有返回任何 json 字符串。)

您的解决方案是使用服务器脚本(例如 php:

<?Php print file_get_contents(url); ?> 

)。

或者 - 如果网站是您的,请根据请求添加对脚本的响应。

于 2014-01-29T14:01:12.540 回答