消息后重定向到上一页

问题描述

功能提示消息上按“确定”后,我想返回上一页

PHP代码

function function_alert($message) { 
  
    // display the alert Box  
    echo "<script>alert('$message');
    document.location='javascript://history.go(-1)';
    </script>";
    } 

    // Function call 
    function_alert("This email has already subscribed");
 }

Alert Box

非常感谢您!

解决方法

尝试过

function function_alert($message) { 
    echo "<script>
          alert('$message')
          history.back()
          </script>";
}