Divine operation to realize PHP jump

花姐姐
Release: 2023-04-08 16:02:01
forward
2344 people have browsed it

Divine operation to realize PHP jump

There are several ways to implement page jump in PHP

Achieved in PHP script code

##

For example The page will jump immediately because The header performs location redirection


Delayed jump (For example, after successful login, there will be a few seconds of waiting time, and then it jumps to other pages)

For example The jump will be executed after 3 seconds

The sleep() method is called, and the effect is that the jump will be executed after x seconds Transfer

Implement in js script code

1.window.location.href method

<script type="text/javascript">
  window.location.href="helloworld.php"          
</script>
Copy after login

Use js method to implement delayed jump

<script type="text/javascript">  
    setTimeout("window.location.href=&#39;helloworld.php&#39;",3000);
</script>
Copy after login

2.window.location.assign method Delayed jump method is the same as above

<script type="text/javascript">
    window.location.assign("helloworld.php");
</script>
Copy after login

3.window.location.replace method (let the new page replace the current page, it will not be saved in the history, all You cannot use the browser to return to the original page)

<script type="text/javascript">
  window.location.replace("helloworld.php");
</script>
Copy after login

4. The window.open method has three parameters, the first URL address. The second is the way to open a new page (such as new page _blank, _new, self jump _self), and the third is the way to open a new page, including style, location, etc.

<script type="text/javascript">  
    window.open("index.php",_blank,width=300px);
</script>
Copy after login

Use HTML script code to complete the jump

Execute the code in the tag

Insert this code directly You can

<meta http-equiv="refresh" content="3;url=&#39;helloworld.php&#39;">
Copy after login

achieve relevant jumps in a fancy way, you deserve it

Recommended learning:

PHP

The above is the detailed content of Divine operation to realize PHP jump. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:cnblogs.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!