在setTimeout里设置倒数5秒计时的方法

【在setTimeout里设置倒数5秒计时的方法】在setTimeout里设置倒数5秒计时的方法
文章图片

在setTimeout里设置倒数5秒计时的方法
文章图片

在setTimeout里设置倒数5秒计时的方法
文章图片

在setTimeout里设置倒数5秒计时的方法
文章图片

当显示弹窗three-method时开始倒计时5秒

$('.three-method').show() var countdown = 5; setTimeout(function () { window.clearInterval(timer); window.open("http://192.168.10.125:10096/guan/download", "_parent"); }, 5000); timer = setInterval(() => { var i18nText = $("#regCountdown").text(); //获取“你已成功主册,2秒後跳溥至APP下戴页” i18nText = i18nText.replace(countdown,--countdown); //replace()在字符串中用“countdown=5”的字符替换递减后的countdown的值 $("#regCountdown").text(i18nText); }, 1000); //每一秒执行一次

    推荐阅读