现在我得到的是脚本,在填写 index.php 的表单后,在正确的登录信息后提示“您已成功登录”...
在我的 check_login.php 这些是脚本......到目前为止
if($count['user_type']== "agent"){
session_register("myusername");
session_register("mypassword");
echo '<script type="text/javascript">window.onload = function() {
alert("You have logged in successfully!\n");}</script>';
echo "<meta http-equiv=\"refresh\" content=\"0;URL=pages/agent.php\">";
exit();
//header("location:pages/agent.php");
}
if ($count['user_type']== "moderator"){
session_register("myusername");
session_register("mypassword");
header("location:pages/moderator.php");
}
else {
echo "<script type='text/javascript'>alert('Invalid Login! Please Try Again!');</script>";
echo "<meta http-equiv=\"refresh\" content=\"0;URL=index.php\">";
}
警报框完全可以工作,但是..我希望它在背景仍然可见时弹出(index.php),然后单击“确定”...它将重定向到我的代码中的页面->到“代理” .php"
我用了
echo "<meta http-equiv=\"refresh\" content=\"0;URL=pages/agent.php\">";
重定向成功登录的用户..
但在重定向过程之前......我希望用户看到一个警报框。
我的观点是,如何在背景仍然可见的情况下让警报框自行弹出。我注意到在 Firefox 中它是灰色 bg 而在 Chrome 中等等...... bg 是白色的......
请帮忙。提前致谢:|