刷新父页面时记住iFram SRC
我正在构建一个内部网,并且正在学习网络语言。
我有一个基本的 html/php 页面,其中包含一个 iFrame,我的大部分内容都加载到其中。
我还有一个登录框,它是主页中的弹出模式。 当您填写此弹出窗口并点击登录时,它会刷新主页,以便它知道您已登录,并可以显示您的姓名等。
但是,这意味着 iframe SRC 也会重置为其默认值。
有没有办法在刷新父页面时保留 iframe 的当前 SRC 是什么?
I have an intranet I am building, and am learning web languages as I go.
I have a basic html/php page that contains an iFrame, which most of my content is loaded into.
I also have a login box that is a popup modal within the main page.
When you fill in this popup and hit login, it refreshes the main page, so that it knows you are logged in, and can display your name etc etc.
However, this means that the iframe SRC also resets to its default.
Is there a way to retain whatever the current SRC of the iframe is, when refreshing the parent page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以设置会话变量来保留当前的src。
在您的情况下,我会执行如下操作:
在
iframe
中加载的所有页面都可以包含设置会话变量的代码。在显示 iframe 的页面上,您可以简单地执行以下操作:
关于将 URL 保存在数据库中的问题。
你可以这样做,但我会把它保存在 cookie 中。
You can set a session variable to keep the current src.
In your case I would do something like the following:
All pages which are loaded in the
iframe
can contain the code to set the session var.And on the page which displays the iframe you can simply do something like:
Regarding your question about saving the URL in the database.
You could do that but I would just save it in a cookie.
HTML
JS
PHP
HTML
JS
PHP
为什么不直接使用 Cookie
Why not just use Cookies