gpt4 book ai didi

php - php 和 jquery 哪个更好重定向

转载 作者:行者123 更新时间:2023-12-01 06:49:35 25 4
gpt4 key购买 nike

php 和 jquery 哪个更好?

 header('Location: http://myhost.com/mypage.php');
or
printf('<script type="text/javascript">location.href = " http://myhost.com/mypage.php";</script>');

我们什么时候使用其中一种而不是另一种?谢谢 。是用户感兴趣还是有什么条件需要遵循。请让我知道 header 的基本需求是什么以及它是如何工作的。

最佳答案

如果这只是一个重定向问题,我会使用PHP(用户不可能阻止它),就像用户禁用了JavaScript一样,重定向将会失败。

如果你想要一个更简单的,你可以使用简单的 HTML 来完成

<meta http-equiv="refresh" content="0;url=NEW PAGE URL" /> 
<!-- Redirect Immediately-->

或者说 30 秒后

<meta http-equiv="refresh" content="30;url=NEW PAGE URL" /> 
<!-- Redirects after 30 secs -->

Note: If you are using header() for redirection, make sure you don't output any HTML or you don't have any white space or you'll get a warning which says headers already sent

关于php - php 和 jquery 哪个更好重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17123228/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com