我正在使用html和javascript做 spotify app 。我想显示计时器倒计时。它适用于简单的html文件,但它无法在 spotify app中使用。 代码如下:
var newCount;
function timer(position,count)
{
if (position == 'start')
{ alert("start"+count);
document.getElementById('timer').innerHTML=count;
newCount = count - 10;
setTimeout("timer('go',newCount)",1000);
}
if (position == 'go')
{ alert(count);
document.getElementById('timer').innerHTML=count;
newCount=newCount-10;
setTimeout("timer('go',newCount)",1000);
}
}