Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无论如何将值回显到已经在 iframe 中的 iframe 中?
我需要从父 url 2 个阶段回显到第二个 iframe。父级中的值作为 php 会话保存。
试试,喜欢
<?php $id=1; ?> <iframe src="page.php?id='<?php echo $id; ?>'" style=""></iframe>
在 page.php 中
<?php $id= $_GET['id']; ?> <iframe src="pages.php?id='<?php echo $id; ?>'" style=""></iframe>