所以,我的倒计时脚本出于某种原因与我的代码不兼容。 我试图让它每天倒计时到特定的时间,但我的网上商店仅限于使用jquery 1.x和我所有的其他插件,因此不能使用其他jquery版本。 https://jsfiddle.net/nskhbL12/
<script>
window.onload = date;
function ShowTime() {
var now = new Date();
var hrs = 20-now.getHours();
var mins = 60-now.getMinutes();
var secs = 60-now.getSeconds();
timeLeft = "" +hrs+' t : '+mins+' m : '+secs+' s';
$("#countdown").html(timeLeft);
}
var countdown;
function StopTime() {
clearInterval(countdown);
}
setInterval(ShowTime ,1000);
</script>
<span id="date">Order before <span id="countdown"></span> and receive your package tomorrow!</span>
答案 0 :(得分:0)
尝试
jQuery(function($) {
setInterval(ShowTime ,1000);
});
或使用类似
的内容 $ = jQuery;