Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/12/2006, 22:16
rterres
 
Fecha de Ingreso: diciembre-2006
Mensajes: 7
Antigüedad: 18 años, 1 mes
Puntos: 0
Mostrar semana en campo de texto

Que tal amigos...
les escribo para pedir asesoria sobre un script..

Encontre un script para mostrar el numero de semana actual...
este funciona bien pero se despliega en una ventana de alerta...
la cuestion es que lo necesito modificar para que aparezca en un cuadro de texto de un formulario...
Puede ser algo sencillo para alguien que maneja bien las funciones de javascript.. que en este caso.. pues.. no es mi caso!!!

cualquier consejo sera de mucha ayudaa!!!
gracias a todos!

ahi va el codigo....
___

<HTML>
<HEAD>
<TITLE>??? What Week Is It ???</TITLE>
<SCRIPT Language="JavaScript">
<!--

function weekNo() {
var totalDays = 0;
var now = new Date();
var days = new Array(12); // Array to hold the total days in a month
days[0] = 31;
days[2] = 31;
days[3] = 30;
days[4] = 31;
days[5] = 30;
days[6] = 31;
days[7] = 31;
days[8] = 30;
days[9] = 31;
days[10] = 30;
days[11] = 31;

// Check to see if this is a leap year

if (Math.round(now.getYear()/4) == now.getYear()/4) {
days[1] = 29
}else{
days[1] = 28
}

// If this is January no need for any fancy calculation otherwise figure out the
// total number of days to date and then determine what week

if (now.getMonth() == 0) {
totalDays = totalDays + now.getDate();
}else{
var curMonth = now.getMonth();
for (var count = 1; count <= curMonth; count++) {
totalDays = totalDays + days[count - 1];
}
totalDays = totalDays + now.getDate();
}
var week = Math.round(totalDays/7);
return week;
}

// -->
</SCRIPT>
</HEAD>


<BODY>
<p>
Click the button to find out what week of the year this is.<br>

<form>
<input type=button value="Week?" onClick="alert('This is week number ' + weekNo())">
</form>

</BODY>
</HTML>

Última edición por rterres; 06/12/2006 a las 22:28