Ver Mensaje Individual
  #5 (permalink)  
Antiguo 28/10/2011, 22:37
Avatar de jor_0203
jor_0203
 
Fecha de Ingreso: octubre-2011
Ubicación: mexico
Mensajes: 760
Antigüedad: 13 años, 3 meses
Puntos: 8
Respuesta: ¿como pasar parámetros a una función setInterval( instrucciones, tiempo, p

Cita:
Iniciado por jor_0203 Ver Mensaje
¿como pasar parámetros a una función setInterval( instrucciones, tiempo, parametros );?
alguien tiene ejemplo aplicados a un div
setInterval( instrucciones, tiempo, parámetros );
este ejemplo que esta abajo no me funciona ojala alguien tenga un ejemplo
______________________________________…

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-…
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>

<script type="text/javascript">
function mensaje(a){
et=parseInt(document.getElementById(…
et++;
document.getElementById(a).innerHTML = et;
document.getElementById(a).style.height=et+"px";

}
</script>


</head>

<body>


<input type="button" id="recoger" value="recoger" onclick=" setInterval('mensaje('capa2')',1000);" />

<div id="capa2" style="width:720px; height:305px; background-color: #CC0000; position:relative;"></div>
</body>
</html>