if(($row["status"])!="valid")
{
$stats=$row["status"];
echo "<script type='text/javascript'>";
echo "alert('Your Status is $stats..Please Try Again Later...');";
echo "</script>";
header ("location: index.php");
}
它是 php 代码的一部分。如果我在标头之前使用 // ,则 javascript 会运行..但是当我不使用 // 时,它会直接转到 index.php。解决办法是什么??或者有什么方法可以调用 javascript 函数来显示来自这个 if 条件的消息?