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.
如何使用alert()之前header('location:http://domain.com');,以便警报工作。问题是 php 代码很强大并且忽略了 alert()
alert()
header('location:http://domain.com');
我认为您正在尝试这样做?
alert('After this goes away, I will be redirected via JavaScript'); window.location = "http://domain.com";
参考。 如何使用 Javascript 重定向?
要使用像 alert() 这样的 JavaScript,你必须有一个加载的网页。您可以在警报之后可能调用的下一个请求中执行 header() 函数。