【问题标题】:Redirect to Previous Page After Message消息后重定向到上一页
【发布时间】:2020-09-28 05:08:12
【问题描述】:

在提示的功能信息上按“确定”后,我想返回上一页。

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

非常感谢!

【问题讨论】:

    标签: javascript php redirect alert message


    【解决方案1】:

    试过了

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-06-20
      • 1970-01-01
      • 2017-02-08
      • 2012-08-28
      • 2012-12-30
      • 1970-01-01
      相关资源
      最近更新 更多