我有一个回显 javascript 以导航到不同页面的函数。进行导航时,
echo 'window.location.href="'.$url.'";';
不起作用,只是将其打印在屏幕上。
"window.location.href="./index.php";
我以这种方式使用我的功能:redirect("./index.php");
我的php函数如下
function redirect($url)
{
if (!headers_sent())
{
header('Location: '.$url);
exit;
}
else
{
echo '<script type="text/javascript">';
echo 'window.location.href="'.$url.'";';
echo '</script>';
echo '<noscript>';
echo '<meta http-equiv="refresh" content="0;url='.$url.'" />';
echo '</noscript>'; exit;
}
}