alertMes里的javascipt代码没有运行直接输出是什么原因?
function alertMes($mes,$url){
echo "<script>alert('{$mes}');</script>";
echo "<script>window.location='{$url}';</script>";
}
function alertMes($mes,$url){
echo "<script>alert('{$mes}');</script>";
echo "<script>window.location='{$url}';</script>";
}
2016-05-07
我遇到过 只执行弹窗代码echo "<script>alert('{$mes}');</script>";后面的跳转没有执行
代码如下可解决:
echo "<script>alert('验证码错误');</script>";
echo "<script type='text/javascript'>";
echo "window.location.href='login.php'";
echo "</script>";
-------------------------------------------------------------------------
或者这样使用连接符“”.“”
如下:
echo "<script>alert('验证码错误');</script>";
echo "<script>"."window.location.href='login.php'"."</script>";
举报