0

編集: このエラーは私の Facebook のようなスクリプトが原因で発生しますが、このスクリプトはまだ機能していませんが、エラーは発生しません。

$get および .find jquery 関数を使用して、別のページの一部を表示しようとしていますが、エラーが発生しています。そうでないときに、外部ドメインにリンクしているかどうかを確認することを期待しています。

これが私のコードです:

        var ComponentSrc = "http://localhost/acatalog/8ft_Trampoline_Tent.html";
        $.get(ComponentSrc, function(data){
            $(this).children('div').html($(data).find('.page-content').html());
        })

ただし、次の URL からこれを実行する場合:http://localhost/acatalog/8ft_Fun_Pink_Trampoline.html

それは私にこのエラーを与えています:

Given URL is not permitted by the application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains.

同じドメインにリンクしていない場合、このエラーが表示されることはわかっていますが、そうではありません。ローカルホストだからですか?

4

1 に答える 1

2

$('div#result').load('http://localhost/acatalog/8ft_Trampoline_Tent.html .page-content');あまり複雑ではないものを使用する必要があります

于 2013-08-16T09:37:47.473 に答える