In the previous article, I introduced to you Three common ways to automatically jump the HTML page after 3 seconds. This article will continue to introduce you to the relevant knowledge about HTML page jump. Let’s learn together.
Five examples are listed below to explain in detail. The main function of these examples is: after 5 seconds, automatically jump to the hello.html file in the same directory (modify it according to your own needs).
1) Implementation of html
Advantages: Simple
Disadvantage: Cannot be used in Struts Tiles
2) Implementation of javascript
Advantages: Flexible, can be combined with more other functions
Disadvantages: Affected by different browsers
3) Combined javascript implementation of reciprocal (IE)
Advantages: more user-friendly
Disadvantages: Firefox does not support (firefox does not support innerText attributes of span, div, etc.)
3) Combined javascript implementation of reciprocal (firefox)
4) Solve the problem that Firefox does not support innerText
5) Integrate 3) and 3')
The above five examples introduce to you the five methods of automatic page jump in HTML. I hope you like it.