我想在用户点击" OK"时重定向用户。在警报框中。任何提示将不胜感激
if( $num_rows == 0 ) {
// No results returned
echo "No results!";
} else {
$message = "Information already sent";
echo "<script type='text/javascript'>alert('$message');</script>";
}
答案 0 :(得分:2)
echo "<script type='text/javascript'>
alert('$message');
document.location.href='your url';
</script>";
答案 1 :(得分:0)
您可以使用window.location.href
重定向到javascript中的任何页面,以便在使用后点击警告框中的确定后重定向到test.php:
if( $num_rows == 0 ) {
// No results returned
echo "No results!";
} else {
$message = "Information already sent";
echo "<script type='text/javascript'>alert('$message');window.location.href='test.php';</script>";
}
答案 2 :(得分:0)
echo "<script>alert('Update Not Successfully');document.location='pagename.php'</script>";
答案 3 :(得分:0)
使用window.location.replace(url)
比window.location.href = url
更好,因为不允许用户使用浏览器中的“历史记录中的上一页”按钮返回此页面。
它会进行真正的重定向,而不仅仅是转到下一个网址:
if( $num_rows == 0 ) {
// No results returned
echo "No results!";
} else {
$message = "Information already sent";
echo "<script type='text/javascript'>alert('$message'); window.location.replace('test.php'); </script>";
}