PHP:浏览器返回页面

发布于 2024-12-05 01:07:58 字数 243 浏览 0 评论 0原文

我想要这样的东西:

<?php
if($something)
    header('Location:javascript:history.go(-2)');
?>

但是 header('Location:javascript:history.go(-2)'); 不起作用。还有其他选择吗?

我不知道用户刚刚访问的页面,所以我无法对网址进行硬编码。

I want for something like this:

<?php
if($something)
    header('Location:javascript:history.go(-2)');
?>

but header('Location:javascript:history.go(-2)'); doesn't work. Any alternatives?

I don't know the page the user was just on, so I can't hardcode the url.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

冰雪梦之恋 2024-12-12 01:07:59

从您的角度来看,我认为您可能正在寻找这样的东西:

<html><head></head><body>
<?php
if($something){
?>
<script type="text/javascript">
window.history.go(-2);
</script>
<?php
}
?>
</body></html>

From your point of view, i think you might be looking for something like this:

<html><head></head><body>
<?php
if($something){
?>
<script type="text/javascript">
window.history.go(-2);
</script>
<?php
}
?>
</body></html>
紅太極 2024-12-12 01:07:59

只要他们通过您可以使用的链接到达那里

header("Location: " . $_SERVER['HTTP_REFERER']);

As long as they got there by a link you could use

header("Location: " . $_SERVER['HTTP_REFERER']);
野鹿林 2024-12-12 01:07:59

您不能在 Location HTTP 标头中使用 javascript: 伪协议。事实上,你根本不应该使用它。

相反,通过 Location HTTP 标头(如果可以的话)将整个 URL 发送到您希望用户返回的页面或者您可以回显历史记录.back(),尽管我非常不鼓励你这样做

附带说明一下,发送 Location HTTP 标头后始终退出。用户代理不必遵循它。

You can't use the javascript: pseudo protocol in a Location HTTP header. In fact, you really shouldn't be using it at all.

Instead, send the whole URL to the page you want the user to go back to via the Location HTTP header (if you can) or you could echo the history.back() though I highly discourage that you do.

As a side note, always exit after sending the Location HTTP header. User agents don't have to follow it.

叹倦 2024-12-12 01:07:59

根据您的问题。您可以在 php 脚本中的任何位置使用以下代码..

代码:

  <?php

     if($something){
       echo "<script>window.history.back()</script>";
      } 
   ?>

According to your problem .you can use following code in php script at any where..

code:

  <?php

     if($something){
       echo "<script>window.history.back()</script>";
      } 
   ?>
花开浅夏 2024-12-12 01:07:59
if($something) print '<script>window.history.go(-2);</script>';
if($something) print '<script>window.history.go(-2);</script>';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文