Così ho questo codicecome smettere di timer con un'altra funzione javascript
function timer()
{
setTimeout(function(){alert("Out of time")}, 3000); //Alerts "Out of time" after 3000 milliseconds
}
function resetTime()
{
timer(); //this is not right, i thought it would override the first function but it just adds another timer as well which is not what I want
}
function stopTime()
{
//What could go here to stop the first function from fully executing before it hits 3000 milliseconds and displays the alert message?
}
il timer function() inizia come il caricamento della pagina, ma se ho un pulsante per StopTime() e mi clic su di esso, come interrompo la prima funzione dall'esecuzione e la interrompo dal colpire il segno di 3000 millisecondi e avvisando "Fuori dal tempo"?
È necessario assegnare un nome al timer a una var globale – colecmc