简体   繁体   中英

JavaScript 1 Time Interval?

window.onload = setInterval(myFunc, 5000);
function myFunc(){
    alert("This is a test.");
}

Is there any way to stop the function after 1 interval or to just have it perform 1 interval?

Use setTimeout

window.onload = setTimeout(myFunc, 5000);
function myFunc(){
    alert("This is a test.");
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM