このスクリプトは 60 から 0 までカウントダウンし、0 になると停止します。
<script type="text/javascript">
var counttx= "60";
var counterrx=setInterval(timerrx, 1000); //1000 will run it every 1 second
function timerrx()
{
counttx=counttx-1;
if (counttx < 0)
{
clearInterval(counterrx);
return;
}
document.getElementById("timerrx").innerHTML=counttx; // watch for spelling
}
</script>
カウントダウンする代わりに、スクリプトをカウントアップさせたいのです。をinに変更し-
ましたが、次のことが起こりました。+
counttx=counttx-1;
60 601 6011 60111 等