输入用户和密码提交到独立的php验证后无法自动跳转到主页面,请大师帮忙 5
登陆页面login.html表单<formaction="pagelogin.php"target='login'method="post"enctype='multip...
登陆页面login.html
表单
<form action="pagelogin.php" target = 'login' method="post" enctype='multipart/form-data'>
...
</form>
验证php ----pagelogin.php
<?php
。。。
echo "<script language=javascript>alert('登陆成功');window.location.href='index.html'</script>";
?>
但验证完后JS无法实现跳转。请大师帮忙
非常谢谢大家的回答,最好找到解决方法了,我用的iframe伪装的无网页刷新,但是我的iframe长宽及边框都设置为0,导致看不到输出结果,最后用下面办法实现了自动跳转至主页:
echo "<script>window.top.location.replace('../index.html')</script>";,这里一定要用window.top,不然php返回结果直接进iframe了,不会直接回主页。很感谢大家的回答,这次由于分不多,就暂留小弟这了。新年快乐 展开
表单
<form action="pagelogin.php" target = 'login' method="post" enctype='multipart/form-data'>
...
</form>
验证php ----pagelogin.php
<?php
。。。
echo "<script language=javascript>alert('登陆成功');window.location.href='index.html'</script>";
?>
但验证完后JS无法实现跳转。请大师帮忙
非常谢谢大家的回答,最好找到解决方法了,我用的iframe伪装的无网页刷新,但是我的iframe长宽及边框都设置为0,导致看不到输出结果,最后用下面办法实现了自动跳转至主页:
echo "<script>window.top.location.replace('../index.html')</script>";,这里一定要用window.top,不然php返回结果直接进iframe了,不会直接回主页。很感谢大家的回答,这次由于分不多,就暂留小弟这了。新年快乐 展开
4个回答
展开全部
应该是你数据没读到,后面加个else试试是否读到数据。还有你if的条件不是要用”==“吗?
<?php if($record == mysql_fetch_array($result,MYSQL_NUM)) {echo "<script>alert('成功登陆!');</script>"; echo "<script language=javascript>alert('登陆成功');window.location.href='index.html'</script>"; exit();}
else{
echo "数据读取失败";
}
?>
<?php if($record == mysql_fetch_array($result,MYSQL_NUM)) {echo "<script>alert('成功登陆!');</script>"; echo "<script language=javascript>alert('登陆成功');window.location.href='index.html'</script>"; exit();}
else{
echo "数据读取失败";
}
?>
展开全部
echo "<script>alert('成功登陆!');</script>";
echo "<meta http-equiv=refresh content=0.1;url=index_ws.php >";
exit;
我一般这么写
echo "<meta http-equiv=refresh content=0.1;url=index_ws.php >";
exit;
我一般这么写
更多追问追答
追问
试过了,貌似不行啊,我帖详细点吧
php内容:
alert('成功登陆!');";
echo "";
exit;
}
?>
试过了,貌似不行啊,我帖详细点吧
php内容:
alert('成功登陆!');";
echo "";
exit;
}
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用header吧
header('location: index.html');
header('location: index.html');
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以用header跳转 header("location:test.php");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询