ТАймер

fax

Guest
ТАймер

<SCRIPT LANGUAGE="JavaScript">
var counter = 100
var timerID
function startCounter() {
document.forms[0].display.value = ++counter
//clearTimeout(timerID)
timerID = setTimeout("startCounter()", 1000)
}
function haltCounter() {
clearTimeout(timerID)
counter = 100
}
document.onstop = haltCounter
</SCRIPT>

как сделать ограничение , чтобы код считал только от 100 до 200 ...
 

rotoZOOM

ACM maniac
Поставить строчку:
Код:
if (counter<200)timerID = setTimeout("startCounter()", 1000)
вместо твоей
 
Сверху