Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/09/2011, 22:59
juana47
 
Fecha de Ingreso: octubre-2010
Mensajes: 21
Antigüedad: 14 años, 4 meses
Puntos: 1
Problema para llamar una funcion

Hola

tengo la funcion
countdown(2012,06,20)
cuan la mando llamar asi

<BODY onLoad="countdown(2012,06,20)">

todo sale muy bien

pero necesito llamarla de esta forma

<script LANGUAGE="JavaScript">
<!--
countdown(2012,06,20);
// -->
</script>


Pero al llamarla asi no me muestra el resultado


<script>


var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","A ug","Sep","Oct","Nov","Dec")

function countdown(yr,m,d){
theyear=yr;themonth=m;theday=d;
var today=new Date()
var todayy=today.getYear()
if (todayy <1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todayh=today.getHours()
var todaymin=today.getMinutes()
var todaysec=today.getSeconds()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
futurestring=montharray[m-1]+" "+d+", "+yr
dd=Date.parse(futurestring)-Date.parse(todaystring)
dday=Math.floor(dd/(60*60*1000*24)*1)
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000) )/(60*1000)*1)
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000 ))%(60*1000))/1000*1)
if(dday==0&&dhour==0&&dmin==0&&dsec==1){
document.forms.count.count2.value=current
return
}
else
document.forms.count.count2.value=" "+dday+ " días, "+dhour+" hrs, "+dmin+" min, y "+dsec+" seg "
setTimeout("countdown(theyear,themonth,theday)",10 00)
}

//enter the count down date using the format year/month/day

</script>




</head>
<BODY bgcolor="#ffffff">

<script LANGUAGE="JavaScript">
<!--
countdown(2012,06,20);
// -->
</script>

<form name="count">
<input type="text" size="69" name="count2">
</form>
</body>
</html>