Today encountered a problem, behind the framework, when the judge login after the failure to return to the landing page, but the login page is open in the framework, I want it to jump directly out of the frame open (here is not open a new window), finally found a way to share with you:
echo "<script language=" javascript >alert (' login is invalid or not logged in, please log in! '); location.href= ' login.php ';</script> ';
The original content is above, to get it out of the frame to open the login page, you need to use the following method:
echo "<script language=" javascript >alert (' login is invalid or not logged in, please log in! '); window.top.location.href= ' login.php ';</script> ';
In fact, the jump link before adding a window.top. If you open a new window, you can use JS window.open ("url", "open Mode"); To open a new window.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.