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.
我有一个网页,Target PHP URL当用户单击链接时,它可以在 IFRAME 灯箱中打开同一域中的一个。在目标 URL 内,如果“用户登录检查”失败,如何停止打开 IFRAME 并将父窗口重定向到登录页面?
Target PHP URL
或者更确切地说,仅当用户已登录时才打开 Iframe。否则,将父窗口重定向到登录页面。
感谢任何帮助。
如果它是同一个域并且您不关心 JS 解决方案,如果用户未通过登录检查,您可以在 iframe 中提供这样的页面。
<html> <head> <title>You are not logged in...</title> </head> <body onload="parent.location.href='REDIRECT_LOCATION'"></body> </html>
将 REDIRECT_LOCATION 替换为您希望父窗口重定向到的位置。