Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to perform delayed Jump in javascript

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly explains "how to delay jump in javascript". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to delay jump in javascript".

The operating environment of this tutorial: windows7 system, javascript1.8.5 version, Dell G3 computer.

Javascript performs delayed jump

In javascript, you can use the setTimeout () method with the _ window.location.href property to achieve a delayed jump.

Implementation code:

JavaScript

Jump after 5 seconds

SetTimeout (function () {_ window.location.href='';}, 5000); / / function jump () {/ / _ window.location.href='';//} / / setTimeout (jump,5000)

Description:

The setTimeout () method is used to call a function or evaluate an expression after a specified number of milliseconds.

Tip:

1000 milliseconds = 1 second.

You can use the setInterval () method if you just want to repeat the execution.

Use the clearTimeout () method to block the execution of the function.

Thank you for reading, the above is the content of "how to delay the jump of javascript". After the study of this article, I believe you have a deeper understanding of the problem of how to delay the jump of javascript, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report