2013-05-18 39 views
1

我希望這不會發布到任何地方,因爲它太明顯了。使用URL或php加載iframe中的頁面

在我的網站上(Robo Co.)我使用了兩個名爲iframe_r和iframe_l的iframe元素。 我想知道如何創建永久鏈接來打開那些未包含在src =()元素中的iframe中的頁面。

我想象的聯繫將一些接近:roboserver.zapto.org/main.php & iframe_r = 「page_to_load」 & iframe_l = 「page_to_load」

的網址將隨後轉發該值iframe_r =「第1頁」iframe_l =「第2頁」到嵌入的PHP然後將加載到第1頁和iframe_r第2頁到iframe_l。

+0

你想這鏈接到您的網站外部或從您的網站內部工作? 和 - 爲什麼你會這樣對你自己? –

回答

3

使用您在頁面中使用的URL方案

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

你會創作您的I幀像這樣

<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";