显示JavaScript警报后如何移动到另一个页面

时间:2016-05-09 10:56:13

标签: php

如何在显示JavaScript警报后移至其他页面。谢谢你,D 下一个代码转到另一个页面的代码是什么?

if(isset ($_POST['reply'])){

    echo "<script>alert('Login to continue.')</script>";

}

3 个答案:

答案 0 :(得分:1)

希望你正在寻找这个

echo "<script>alert('Update Not Successfully');document.location='pagename.php'</script>";

不要忘记在echo中的起点和终点写脚本。

答案 1 :(得分:0)

您可以在下方使用 javascript

window.location = "http://www.domain.com";

您也可以尝试使用PHP代码:

header('Location: targetPage.php');

答案 2 :(得分:0)

您必须同时使用JavaScript confirmwindow.location

var r = confirm("Login to continue.");
if (r == true)
{
    window.location = "http://www.domain.com/agreed.html";
}
else
{
    window.location = "http://www.domain.com/cancelled.html";
}