03/11/2010, 13:34
|
| | Fecha de Ingreso: agosto-2010 Ubicación: Mexico
Mensajes: 180
Antigüedad: 14 años, 3 meses Puntos: 0 | |
Respuesta: Funciones Javascript y querys en PHP Funciones en Javascript
Código:
<script type="text/javascript">
var id = "";
var valor = "";
function FechaContrato(valor)
{
for(i=0;i<document.EMPLEADO.vFContrato.length;i++)
{
var CH = document.EMPLEADO.vFContrato[i].checked;
if(CH == true)
id = document.EMPLEADO.vFContrato[i].value;
}
document.getElementById(id).value = valor;
}
function refresh(link)
{
var Tag = link.href;
for(j=0;j<=26;j++)
Tag = Tag + "&"+document.EMPLEADO.elements[j].id+"="+document.EMPLEADO.elements[j].value;
link.href = Tag;
//alert(link.href);
}
</script>
|