我试图通过使用$ 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());
})
但是,从以下网址运行此操作时: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.
我意识到如果我没有链接到同一个域,则会显示此错误,但我不是。是因为它的localhost吗?
答案 0 :(得分:2)
你应该使用$('div#result').load('http://localhost/acatalog/8ft_Trampoline_Tent.html .page-content');
不那么复杂的