gpt4 book ai didi

php - 使用 URL 或 php 在 iframe 中加载页面

转载 作者:行者123 更新时间:2023-11-30 13:03:17 25 4
gpt4 key购买 nike

我希望这不会张贴在任何地方,因为它太明显了。

在我的网站 ( Robo Co. ) 上,我使用了两个名为 iframe_r 和 iframe_l 的 iframe 元素。我想知道如何创建永久链接以打开那些 iframe 中未包含在 src=() 元素中的页面。

我想象的链接应该接近于:roboserver.zapto.org/main.php&iframe_r="page_to_load"&iframe_l="page_to_load"

然后 URL 会将值 iframe_r="page1"iframe_l="page2" 转发到嵌入的 php 中,然后将 page1 加载到 iframe_r 中,将 page2 加载到 iframe_l 中.

最佳答案

使用您在页面中使用的 url 方案

roboserver.zapto.org/main.php&iframe_r=/left/page.php&iframe_l=/right/page.php

你会像这样创作你的 iframe

<iframe id="frameLeft" src="<?= $_GET["iframe_l"] ?>"/>
<iframe id="frameRight" src="<?= $_GET["iframe_r"] ?>"/>

使用 javascript 你可以

document.getElementById("frameLeft").src = "new url";
document.getElementById("frameRight").src = "new url";

关于php - 使用 URL 或 php 在 iframe 中加载页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16619992/

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