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 重定向主网站而不是 iframe,我该怎么做?:)
谢谢!
在 iframe 中
<form method=".." action=".." id="loginForm" target="_parent" > ... </form>
或通过 javascript 使用该self.parent.location.href属性
self.parent.location.href
它必须是 iframe 吗?为什么不使用点击登录按钮时可见的隐藏 div?这样,表格已经在“主页”上。