将网页动态嵌入到另一个网页中

发布于 2024-12-25 17:26:44 字数 197 浏览 1 评论 0原文

我想将一个网页嵌入到另一个网页中。由于某些问题我无法使用 iFrame。我尝试用标签。但它在 IE 中带来了一些奇怪的问题。嵌入网页内的链接不会在 IE 窗口的整个窗口中打开。有什么解决办法吗? 我也在寻找一些基于 ajax 的解决方案,但我不确定它是否有效,因为我的目标页面有大量外部 javascript 文件以及 CSS。

任何解决方案或想法都会有很大帮助。

I would like to embed an web page into another web page. Since due to some issues I cannot use a iFrame. I tried with tag. But it gives some weird problems in IE. The links inside the embedded web pages does not open up in the full body of the window in IE. Is there any solutions to it??
I'm also looking for some ajax based solutions, but I'm not sure whether it will work as my target page is having lots of external javascript files as well as CSS.

Any solutions or ideas will be of great help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

穿越时光隧道 2025-01-01 17:26:44

您可以使用扩展名 .php 保存两个页面,并在另一个文档中希望该文档的位置添加此代码:(

    <?php include("myOtherDocument.php"); ?>

您要添加的文档应该只包含属于该位置的代码,不要重复 body 标签、head、html、doctype等等...)

如果不使用本地服务器或上传到服务器,您也无法看到结果。

You can save both pages with extension .php and where you want the document inside the other document add this code:

    <?php include("myOtherDocument.php"); ?>

(The document you are adding should only have the code that belongs there, do not repeat the body tags, head, html, doctype etc...)

You also cannot see the results without using your local server or uploading to a server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文