gpt4 book ai didi

php - jQuery 将外部脚本丰富的 PHP 文件加载到本地页面

转载 作者:行者123 更新时间:2023-12-02 20:41:58 24 4
gpt4 key购买 nike

我在整个网络上搜索了明确的答案,但尚未找到。

我有这个网站:

www.helixagent.com/todo/

我想将整个站点加载到我的主索引页中的 portlet 中。

我尝试了 iFrame 方法,但无法正确加载网站。样式和 javascript 文件未加载(我认为)

有没有办法制作一个模仿新浏览器页面的门户并加载内容,就像通过网址栏直接访问一样?

最佳答案

可以执行cross-domain requests using jQuery .

只需包含 this file加载 jQuery 后,你可以做一些时髦的事情,比如:

$('html').load('http://helixagent.com/todo/');

请注意,这当然不会加载嵌入的 CSS 和 JS 文件。为此,您需要使用 iframe:

$(function() {
$('body').append('<iframe src="http://www.helixagent.com/todo/" />');
});

实例:http://jsbin.com/uruka

关于php - jQuery 将外部脚本丰富的 PHP 文件加载到本地页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2211412/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com