5초 후에 다른 페이지로 바꿀까요?

705 단어
자바스크립트의 리셋을 배울 것입니다. 만약 5초 후에 jquery에서 다른 페이지로 리셋하는 방법을 찾고 있다면, 2초, 3초, 5초 또는 jquery의 특정한 시간 후에 URL으로 리셋하는 간단한 예시를 보여 드리겠습니다.jquery에서 setTimeout () 를 사용하여 5초 후에 URL로 바꿀 것입니다.
$("button").click(function(){
    $(this).text('Redirecting After 2 Seconds................');

    var delay = 2000; 
    var url = 'https://www.phpcodingstuff.com/'
    setTimeout(function(){ window.location = url; }, delay);
})
자세히 보기: https://www.phpcodingstuff.com/blog/redirect-to-another-page-after-5-seconds.html

좋은 웹페이지 즐겨찾기