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 回答