Foros del Web » Programando para Internet » Javascript »

Que tal estimados...necesito ayuda

Estas en el tema de Que tal estimados...necesito ayuda en el foro de Javascript en Foros del Web. tengo el siguiente código que he ido modificando dentro de lo que puedo... pero necesito poner un link en cada dia... dentro del cual debo ...
  #1 (permalink)  
Antiguo 05/04/2004, 12:02
 
Fecha de Ingreso: marzo-2003
Ubicación: onde toy?
Mensajes: 1.437
Antigüedad: 21 años, 1 mes
Puntos: 9
Que tal estimados...necesito ayuda

tengo el siguiente código que he ido modificando dentro de lo que puedo... pero necesito poner un link en cada dia... dentro del cual debo pasar parametros de asp..pero no sé donde poner los links..

Alguien que me ayude POR FA!!!!

Grax desde ya!
__________________
Buena Vida...
Francisco
  #2 (permalink)  
Antiguo 05/04/2004, 12:02
 
Fecha de Ingreso: marzo-2003
Ubicación: onde toy?
Mensajes: 1.437
Antigüedad: 21 años, 1 mes
Puntos: 9
<script language=javascript>
<!-- Begin
var now = new Date();
var month_array = new Array("Enero","Febrero","Marzo","Abril","Mayo","Ju nio","Julio","Agosto","Septiembre","Octubre","Novi embre","Diciembre");
document.write("<form name=date_list><table background='../imagenes/titulos.jpg'><tr><td>");
document.write("<select class='input' name=month onchange=change_month(this.options.selectedIndex)> ");
for(i=0;i<month_array.length;i++)
{
if (now.getMonth() != i)
{document.write ("<option value="+i+">"+month_array[i]);}
else
{document.write ("<option value="+i+" selected>"+month_array[i]);}

}
document.write("</select>");
document.write("</td><td>");
document.write ("<select class='input' name=year onchange=change_year(this.options[this.options.selectedIndex])>");
for(i=now.getYear();i<3000;i++)
{
if (now.getYear() != i)
{document.write("<option value="+i+">"+i);}
else
{document.write("<option value="+i+" selected>"+i);}
}
document.write("</select></td></tr><tr><td colspan=2><center>");

document.write("<table background='../imagenes/fondito.jpg' border=0 cellspacing=0 cellpading=0 width=100%><tr bgcolor='#ff9900' align=center>");
document.write("<td class='cuerpo'>L</font></td><td class='cuerpo'>M</td><td class='cuerpo'>M</td><td class='cuerpo'>J</td><td class='cuerpo'>V</td><td class='cuerpo' >S</td><td class='cuerpo'><font color=RED>D</td>");
document.write("</tr><tr>");
for(j=0;j<6;j++)
{
for(i=0;i<7;i++)
{
document.write("<td class='cuerpo' align=center id=d"+i+"r"+j+"></td>")
}
document.write("</tr>");
}

document.write("</table>");

document.write("</center></from></td></tr></table>");

var show_date = new Date();

function set_cal(show_date)
{
begin_day = new Date (show_date.getYear(),show_date.getMonth(),1);
begin_day_date = begin_day.getDay();
end_day = new Date (show_date.getYear(),show_date.getMonth()+1,1);
count_day = (end_day - begin_day)/1000/60/60/24;
input_table(begin_day_date,count_day);
}
set_cal(show_date);

function input_table(begin,count)
{
init();
j=0;
if (begin!=0){i=begin-1;}else{i=6}
for (c=1;c<count+1;c++)
{
colum_name = eval("d"+i+"r"+j);
if ((now.getDate() == c)&&(show_date.getMonth() == now.getMonth())&&(show_date.getYear() == now.getYear())) {colum_name.style.backgroundColor = "#ff9900";colum_name.style.color = "#FFFFFF"};
colum_name.innerText = c;
i++;
if (i==7){i=0;j++;}
}
}

function init()
{
for(j=0;j<6;j++)
{
for(i=0;i<7;i++)
{
colum_name = eval("d"+i+"r"+j);
colum_name.innerText = "-";
colum_name.style.backgroundColor ="";
colum_name.style.color ="#ffffff";
}
}
}

function change_month(sel_month)
{
show_date = new Date(show_date.getYear(),sel_month,1);
set_cal(show_date);
}

function change_year(sel_year)
{
sel_year = sel_year.value;
show_date = new Date(sel_year,show_date.getMonth(),1);
set_cal(show_date);
}
// End -->
</script>
__________________
Buena Vida...
Francisco
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 00:47.