JavaScript实现倒计时跳转页面功能【实用】

时间:2021-05-26

这里给大家提供一个好用的JS写的倒计时页面,就像一些网站上点提交后出现的倒计时页面类似。

页面代码简单,直接拷贝就能运行,页面可以自己美化下。

<!--这里定义倒计时开始数值--><span id="totalSecond">5</span><!--定义js变量及方法--><script language="javascript" type="text/javascript">var second = document.getElementById('totalSecond').textContent;if (navigator.appName.indexOf("Explorer") > -1){second = document.getElementById('totalSecond').innerText; } else{second = document.getElementById('totalSecond').textContent; }setInterval("redirect()", 1000); function redirect(){if (second < 0){ <!--定义倒计时后跳转页面-->location.href = 'default.aspx'; } else{if (navigator.appName.indexOf("Explorer") > -1){document.getElementById('totalSecond').innerText = second--; } else{document.getElementById('totalSecond').textContent = second--; }}}</script>

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章